diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-02 18:47:06 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-02 18:47:06 +0000 |
commit | a2bafd86f88b45fc61b838810f7a343145ad6d99 (patch) | |
tree | 0ff7399756082a1776ec42696eeb4ca191fc9617 /phpBB/viewforum.php | |
parent | 9f8bb469f1b67e6cf5e863106f4d5483ce0524c9 (diff) | |
download | forums-a2bafd86f88b45fc61b838810f7a343145ad6d99.tar forums-a2bafd86f88b45fc61b838810f7a343145ad6d99.tar.gz forums-a2bafd86f88b45fc61b838810f7a343145ad6d99.tar.bz2 forums-a2bafd86f88b45fc61b838810f7a343145ad6d99.tar.xz forums-a2bafd86f88b45fc61b838810f7a343145ad6d99.zip |
- session changes
git-svn-id: file:///svn/phpbb/trunk@5247 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index ac16b11e18..8422d226f2 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -17,7 +17,7 @@ include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); // Start session -$user->start(); +$user->session_begin(); $auth->acl($user->data); // Start initial var setup @@ -282,7 +282,7 @@ if ($forum_data['forum_type'] == FORUM_POST || ($forum_data['forum_flags'] & 16) // Grab icons $icons = array(); - obtain_icons($icons); + $cache->obtain_icons($icons); // Grab all topic data $rowset = $announcement_list = $topic_list = array(); |