Changeset 5 for branches/portal_by_daris/panels
- Timestamp:
- 02/07/09 08:33:30 (3 years ago)
- Location:
- branches/portal_by_daris/panels
- Files:
-
- 7 modified
-
active_topics.php (modified) (2 diffs)
-
example.php (modified) (2 diffs)
-
menu.php (modified) (1 diff)
-
pages.php (modified) (1 diff)
-
recent_posts.php (modified) (1 diff)
-
top_posters.php (modified) (1 diff)
-
who_is_online.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/portal_by_daris/panels/active_topics.php
r2 r5 1 1 <?php 2 /** 3 * Lists the topics in the specified forum. 4 * 5 * @copyright Copyright (C) 2008 PunBB, partially based on code copyright (C) 2008 FluxBB.org 6 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher 7 * @package PunBB 8 */2 /*********************************************************************** 3 4 PunBB extension 5 Portal 6 Daris <daris91@gmail.com> 7 8 ************************************************************************/ 9 9 10 10 … … 14 14 15 15 $count = 5; // active topics count 16 $c ontent_class= 'forum';16 $cur_panel['class'] = 'forum'; 17 17 18 18 // Load the viewforum.php language file -
branches/portal_by_daris/panels/example.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> … … 13 13 exit; 14 14 15 $ panel['title'] = 'Example panel'; // title for panel (if it isn't set, will be used panel name15 $cur_panel['title'] = 'Example panel'; // title for panel (if it isn't set, will be used panel name) 16 16 17 17 echo 'This is an example panel'; -
branches/portal_by_daris/panels/menu.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> -
branches/portal_by_daris/panels/pages.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> -
branches/portal_by_daris/panels/recent_posts.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> -
branches/portal_by_daris/panels/top_posters.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> -
branches/portal_by_daris/panels/who_is_online.php
r2 r5 2 2 /*********************************************************************** 3 3 4 FluxBB extension4 PunBB extension 5 5 Portal 6 6 Daris <daris91@gmail.com> … … 104 104 else 105 105 { 106 $ panel['title'] = $lang_common['Login'];106 $cur_panel['title'] = $lang_common['Login']; 107 107 108 108 require_once FORUM_ROOT.'lang/'.$forum_user['language'].'/login.php';