Show
Ignore:
Timestamp:
02/07/09 08:33:30 (3 years ago)
Author:
daris
Message:

portal: language files review

Location:
branches/portal_by_daris/panels
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • branches/portal_by_daris/panels/active_topics.php

    r2 r5  
    11<?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************************************************************************/ 
    99 
    1010 
     
    1414 
    1515$count = 5; // active topics count 
    16 $content_class = 'forum'; 
     16$cur_panel['class'] = 'forum'; 
    1717 
    1818// Load the viewforum.php language file 
  • branches/portal_by_daris/panels/example.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
     
    1313        exit; 
    1414 
    15 $panel['title'] = 'Example panel'; // title for panel (if it isn't set, will be used panel name 
     15$cur_panel['title'] = 'Example panel'; // title for panel (if it isn't set, will be used panel name) 
    1616 
    1717echo 'This is an example panel'; 
  • branches/portal_by_daris/panels/menu.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
  • branches/portal_by_daris/panels/pages.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
  • branches/portal_by_daris/panels/recent_posts.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
  • branches/portal_by_daris/panels/top_posters.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
  • branches/portal_by_daris/panels/who_is_online.php

    r2 r5  
    22/*********************************************************************** 
    33 
    4         FluxBB extension 
     4        PunBB extension 
    55        Portal 
    66        Daris <daris91@gmail.com> 
     
    104104else 
    105105{ 
    106         $panel['title'] = $lang_common['Login']; 
     106        $cur_panel['title'] = $lang_common['Login']; 
    107107 
    108108        require_once FORUM_ROOT.'lang/'.$forum_user['language'].'/login.php';