aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/index.php')
-rwxr-xr-xphpBB/install/index.php8
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();
+ }
}
/**