diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-13 00:48:07 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-13 00:48:07 -0600 |
commit | 468e9a700736166f175b974e185d24d0d2a4f33e (patch) | |
tree | b6285a4ff0922225655575b96cfb775a9ed0174c /pages/admin.php | |
parent | bc85a3f1cf8030f1d6400f24b70ea16f717350bd (diff) | |
download | pathery-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 'pages/admin.php')
-rw-r--r-- | pages/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/admin.php b/pages/admin.php index afac6c4..afc6418 100644 --- a/pages/admin.php +++ b/pages/admin.php @@ -9,7 +9,7 @@ topbar($Links); include_once('./includes/datas.php');
include_once('./includes/maps.php');
include_once('./includes/mapoftheday.php');
-include_once('./includes/db.inc.php');
+include_once('./includes/sqlEmbedded.php');
include_once('./includes/championPoints.php');
if ($_GET['applyall'] == 'true') {
|