summaryrefslogtreecommitdiff
path: root/mobile/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-30 18:48:41 +0400
committerAndrew Dolgov <[email protected]>2011-12-30 18:48:41 +0400
commit4046fc59d80c87496c598a71ad7419a93b2bbb0c (patch)
tree3bb849733f3771f23d7ac06d3e084ecbc6ee38c9 /mobile/backend.php
parent487f0750c8d955c7994dc6180d1f56f26e1e9bf5 (diff)
fix includes in mobile/backend (closes #411)
Diffstat (limited to 'mobile/backend.php')
-rw-r--r--mobile/backend.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/mobile/backend.php b/mobile/backend.php
index 2e473a375..98e30bd13 100644
--- a/mobile/backend.php
+++ b/mobile/backend.php
@@ -6,13 +6,12 @@
define('MOBILE_VERSION', true);
require_once "../config.php";
- require_once "functions.php";
- require_once "../functions.php";
-
- require_once "../sessions.php";
+ require_once "mobile-functions.php";
- require_once "../version.php";
- require_once "../db-prefs.php";
+ require_once "functions.php";
+ require_once "sessions.php";
+ require_once "version.php";
+ require_once "db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);