summaryrefslogtreecommitdiffstats
path: root/do.php
diff options
context:
space:
mode:
authorBlueRaja <BlueRaja.admin@gmail.com>2013-01-13 00:48:07 -0600
committerBlueRaja <BlueRaja.admin@gmail.com>2013-01-13 00:48:07 -0600
commit468e9a700736166f175b974e185d24d0d2a4f33e (patch)
treeb6285a4ff0922225655575b96cfb775a9ed0174c /do.php
parentbc85a3f1cf8030f1d6400f24b70ea16f717350bd (diff)
downloadpathery-468e9a700736166f175b974e185d24d0d2a4f33e.tar.xz
db.inc.php now only contains the database login info; the actual connection to the DB has been moved to includes/sqlEmbedded. This was done so we don't need to have the db info in two separate files (one of which is in the repo, derp)
Diffstat (limited to 'do.php')
-rw-r--r--do.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/do.php b/do.php
index bbaa665..1009a91 100644
--- a/do.php
+++ b/do.php
@@ -2,7 +2,7 @@
session_start();
include "includes/maps.php";
-include "includes/db.inc.php";
+include "includes/sqlEmbedded.php";
include "includes/datas.php";
//FirePHP stuff - TODO: Delete
@@ -373,7 +373,7 @@ die(json_encode($json));
function isCurrentMap($mapID) {
// TODO: change methodology
- include_once('./includes/db.inc.php');
+ include_once('./includes/sqlEmbedded.php');
$sql = "SELECT maps.ID
FROM `mapOfTheDay`
LEFT JOIN `maps` ON maps.ID = `mapID`