aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/admin_database.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-05-02 13:06:57 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-05-02 13:06:57 +0000
commit729c3abd02fc564fb99be53ba5fba450a073197f (patch)
tree625496783aefb4310826381bcb69aec6558858ad /phpBB/adm/admin_database.php
parent67d2ac36679f6c38fecaf157d2bc837daa237c41 (diff)
downloadforums-729c3abd02fc564fb99be53ba5fba450a073197f.tar
forums-729c3abd02fc564fb99be53ba5fba450a073197f.tar.gz
forums-729c3abd02fc564fb99be53ba5fba450a073197f.tar.bz2
forums-729c3abd02fc564fb99be53ba5fba450a073197f.tar.xz
forums-729c3abd02fc564fb99be53ba5fba450a073197f.zip
fix some issues with oop, fixing small bugs and prepare the next steps...
NOTE TO DEVS: have a look at adm/admin_board.php (new config layout) git-svn-id: file:///svn/phpbb/trunk@4883 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_database.php')
-rw-r--r--phpBB/adm/admin_database.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/admin_database.php b/phpBB/adm/admin_database.php
index 8c73927951..e26997fb93 100644
--- a/phpBB/adm/admin_database.php
+++ b/phpBB/adm/admin_database.php
@@ -19,7 +19,7 @@ if (!empty($setmodules))
$file_uploads = @ini_get('file_uploads');
if (!empty($file_uploads) && $file_uploads !== 0 && strtolower($file_uploads) != 'off' && $auth->acl_get('a_restore'))
{
- $module['DB']['DB_RESTORE'] = "$filenamex$SID&amp;mode=restore";
+ $module['DB']['DB_RESTORE'] = "$filename$SID&amp;mode=restore";
}
return;
@@ -30,7 +30,7 @@ define('IN_PHPBB', 1);
$phpbb_root_path = '../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
require('pagestart.' . $phpEx);
-include($phpbb_root_path . 'functions_compress.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_compress.'.$phpEx);
@set_time_limit(1200);