1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 16:27:38 +02:00

fix some functions

git-svn-id: file:///svn/phpbb/trunk@9245 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2008-12-30 17:20:50 +00:00
parent 96721d4bf1
commit 11e76473aa
5 changed files with 81 additions and 97 deletions

View File

@@ -126,9 +126,9 @@ class phpbb_user extends phpbb_session
$this->lang_path = $lang_path;
// Make sure last character is a directory separator
if (substr($this->lang_path, -1) != DIRECTORY_SEPARATOR)
if (substr($this->lang_path, -1) != '/')
{
$this->lang_path .= DIRECTORY_SEPARATOR;
$this->lang_path .= '/';
}
}
@@ -324,11 +324,7 @@ class phpbb_user extends phpbb_session
'theme_storedb' => 1
);
$sql = 'UPDATE ' . STYLES_THEME_TABLE . '
SET ' . phpbb::$db->sql_build_array('UPDATE', $sql_ary) . '
WHERE theme_id = ' . $this->theme['theme_id'];
phpbb::$db->sql_query($sql);
phpbb::$db->sql_handle_data('UPDATE', STYLES_THEME_TABLE, $sql_ary, 'theme_id = ' . $this->theme['theme_id']);
unset($sql_ary);
}
@@ -425,7 +421,7 @@ class phpbb_user extends phpbb_session
// Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes...
// After calling it we continue script execution...
phpbb_user_session_handler();
// phpbb_user_session_handler();
// If this function got called from the error handler we are finished here.
if (defined('IN_ERROR_HANDLER'))