diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-06 11:45:30 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-06 11:45:30 +0000 |
commit | 26cb8253142997efeaeb6b96d16ec97eb237644f (patch) | |
tree | be404e84b0b5ccce4a7097437d9cb90144502cde /phpBB/install/index.php | |
parent | d282d0f8b70801ee7fd22d04515cee8c8bd26ce4 (diff) | |
download | forums-26cb8253142997efeaeb6b96d16ec97eb237644f.tar forums-26cb8253142997efeaeb6b96d16ec97eb237644f.tar.gz forums-26cb8253142997efeaeb6b96d16ec97eb237644f.tar.bz2 forums-26cb8253142997efeaeb6b96d16ec97eb237644f.tar.xz forums-26cb8253142997efeaeb6b96d16ec97eb237644f.zip |
automatic updater supporting batch-processing diff
git-svn-id: file:///svn/phpbb/trunk@8152 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/index.php')
-rwxr-xr-x | phpBB/install/index.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index f3a833a872..60265d5a29 100755 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -426,7 +426,10 @@ class module 'T_IMAGE_PATH' => $phpbb_root_path . 'adm/images/', 'S_CONTENT_DIRECTION' => $lang['DIRECTION'], + 'S_CONTENT_FLOW_BEGIN' => ($lang['DIRECTION'] == 'ltr') ? 'left' : 'right', + 'S_CONTENT_FLOW_END' => ($lang['DIRECTION'] == 'ltr') ? 'right' : 'left', 'S_CONTENT_ENCODING' => 'UTF-8', + 'S_USER_LANG' => $lang['USER_LANG'], ) ); @@ -454,7 +457,10 @@ class module $db->sql_close(); } - exit_handler(); + if (function_exists('exit_handler')) + { + exit_handler(); + } } /** |