phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/templates desktop/navbar.inc.php idots...


From: Caeies
Subject: [Phpgroupware-cvs] phpgwapi/templates desktop/navbar.inc.php idots...
Date: Wed, 24 Jan 2007 16:04:52 +0000

CVSROOT:        /cvsroot/phpgwapi
Module name:    phpgwapi
Changes by:     Caeies <Caeies> 07/01/24 16:04:52

Modified files:
        templates/desktop: navbar.inc.php 
        templates/idots: navbar.inc.php 
        templates/idsociety: navbar.inc.php 
        templates/justweb: navbar.inc.php 
        templates/linux-at-work.de: navbar.inc.php 
        templates/probusiness: navbar.inc.php 
        templates/simple: navbar.inc.php 
        templates/verdilak: navbar.inc.php 

Log message:
        some call to links() fixed

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/desktop/navbar.inc.php?cvsroot=phpgwapi&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/idots/navbar.inc.php?cvsroot=phpgwapi&r1=1.17&r2=1.18
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/idsociety/navbar.inc.php?cvsroot=phpgwapi&r1=1.38&r2=1.39
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/justweb/navbar.inc.php?cvsroot=phpgwapi&r1=1.24&r2=1.25
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/linux-at-work.de/navbar.inc.php?cvsroot=phpgwapi&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/probusiness/navbar.inc.php?cvsroot=phpgwapi&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/simple/navbar.inc.php?cvsroot=phpgwapi&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/templates/verdilak/navbar.inc.php?cvsroot=phpgwapi&r1=1.36&r2=1.37

Patches:
Index: desktop/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/desktop/navbar.inc.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- desktop/navbar.inc.php      15 Oct 2006 11:29:21 -0000      1.8
+++ desktop/navbar.inc.php      24 Jan 2007 16:04:51 -0000      1.9
@@ -9,7 +9,7 @@
   *  option) any later version.                                              *
   \**************************************************************************/
 
-  /* $Id: navbar.inc.php,v 1.8 2006/10/15 11:29:21 skwashd Exp $ */
+  /* $Id: navbar.inc.php,v 1.9 2007/01/24 16:04:51 Caeies Exp $ */
 
   function parse_navbar($force = False)
   {
@@ -120,7 +120,7 @@
                        && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
 
                        && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'] )
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                . '">&nbsp;' . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
                $now = time();
@@ -187,7 +187,7 @@
                $var['powered_by'] = lang('Powered by phpGroupWare version 
%1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                . '">' . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
                $now = time();

Index: idots/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/idots/navbar.inc.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- idots/navbar.inc.php        7 Jan 2007 01:04:17 -0000       1.17
+++ idots/navbar.inc.php        24 Jan 2007 16:04:52 -0000      1.18
@@ -5,7 +5,7 @@
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage gui
-       * @version $Id: navbar.inc.php,v 1.17 2007/01/07 01:04:17 skwashd Exp $
+       * @version $Id: navbar.inc.php,v 1.18 2007/01/24 16:04:52 Caeies Exp $
        */
 
 
@@ -79,7 +79,7 @@
                        && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'] )
                {
                        $var['current_users'] = '<a href="'
-                       . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 . '">'
+                       . $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'admin.uicurrentsessions.list_sessions')) . '">'
                        . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
                $now = time();

Index: idsociety/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/idsociety/navbar.inc.php,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- idsociety/navbar.inc.php    28 Apr 2005 08:11:59 -0000      1.38
+++ idsociety/navbar.inc.php    24 Jan 2007 16:04:52 -0000      1.39
@@ -165,7 +165,7 @@
 
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                . '">&nbsp;' . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                        $tpl->set_var($var);
                }

Index: justweb/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/justweb/navbar.inc.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -b -r1.24 -r1.25
--- justweb/navbar.inc.php      28 Apr 2005 08:11:59 -0000      1.24
+++ justweb/navbar.inc.php      24 Jan 2007 16:04:52 -0000      1.25
@@ -156,7 +156,7 @@
                $var['powered_by'] = lang('Powered by phpGroupWare version 
%1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 . '">'
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions')) . '">'
                                . '<font color="#FFFFFF">'.lang('Current 
users') . ': ' . $GLOBALS['phpgw']->session->total() . '</font></a>';
                }
                $tpl->set_var($var);

Index: linux-at-work.de/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/linux-at-work.de/navbar.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- linux-at-work.de/navbar.inc.php     28 Apr 2005 08:11:59 -0000      1.13
+++ linux-at-work.de/navbar.inc.php     24 Jan 2007 16:04:52 -0000      1.14
@@ -5,7 +5,7 @@
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage gui
-       * @version $Id: navbar.inc.php,v 1.13 2005/04/28 08:11:59 powerstat Exp 
$
+       * @version $Id: navbar.inc.php,v 1.14 2007/01/24 16:04:52 Caeies Exp $
        */
 
 
@@ -85,7 +85,7 @@
 
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a class="main_menu_bottom" 
href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a class="main_menu_bottom" 
href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                . '">' . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                        $tpl->set_var($var);
                }

Index: probusiness/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/probusiness/navbar.inc.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- probusiness/navbar.inc.php  25 Nov 2006 16:25:55 -0000      1.4
+++ probusiness/navbar.inc.php  24 Jan 2007 16:04:52 -0000      1.5
@@ -7,7 +7,7 @@
  * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
  * @package phpgwapi
  * @subpackage gui
- * @version $Id: navbar.inc.php,v 1.4 2006/11/25 16:25:55 sigurdne Exp $
+ * @version $Id: navbar.inc.php,v 1.5 2007/01/24 16:04:52 Caeies Exp $
  */
 
 
@@ -105,7 +105,7 @@
                        && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                        && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 .'">&nbsp;' .
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions')) .'">&nbsp;' .
                                        lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
 
@@ -163,7 +163,7 @@
                        && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                        && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                        . '">&nbsp;'
                                        . lang('Current users')
                                        . ': '

Index: simple/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/simple/navbar.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- simple/navbar.inc.php       28 Nov 2006 09:12:33 -0000      1.5
+++ simple/navbar.inc.php       24 Jan 2007 16:04:52 -0000      1.6
@@ -5,7 +5,7 @@
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage gui
-       * @version $Id: navbar.inc.php,v 1.5 2006/11/28 09:12:33 sigurdne Exp $
+       * @version $Id: navbar.inc.php,v 1.6 2007/01/24 16:04:52 Caeies Exp $
        */
 
 
@@ -78,7 +78,7 @@
                        && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                        && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                {
-                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                       $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                . '">&nbsp;' . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
                $now = time();
@@ -160,7 +160,7 @@
                                && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                                && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
                        {
-                               $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
+                               $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'admin.uicurrentsessions.list_sessions'))
                                        . '">&nbsp;' . lang('Current users') . 
': ' . $GLOBALS['phpgw']->session->total() . '</a>';
                        }
                        $now = time();

Index: verdilak/navbar.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/templates/verdilak/navbar.inc.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- verdilak/navbar.inc.php     3 Dec 2006 18:31:43 -0000       1.36
+++ verdilak/navbar.inc.php     24 Jan 2007 16:04:52 -0000      1.37
@@ -5,7 +5,7 @@
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage gui
-       * @version $Id: navbar.inc.php,v 1.36 2006/12/03 18:31:43 sigurdne Exp $
+       * @version $Id: navbar.inc.php,v 1.37 2007/01/24 16:04:52 Caeies Exp $
        */
 
 
@@ -124,7 +124,7 @@
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
                {
                        $var['current_users'] = '<a style="font-family: 
Geneva,Arial,Helvetica,sans-serif; font-size: 12pt;" href="'
-                               . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 . '">&nbsp;'
+                               . $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'admin.uicurrentsessions.list_sessions')) . '">&nbsp;'
                                . lang('Current users') . ': ' . 
$GLOBALS['phpgw']->session->total() . '</a>';
                }
                $now = time();
@@ -216,7 +216,7 @@
                if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
                {
                        $var['current_users'] = '<a style="font-family: 
Geneva,Arial,Helvetica,sans-serif; font-size: 12pt;" href="'
-                               . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 . '">&nbsp;'
+                               . $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'admin.uicurrentsessions.list_sessions')) . '">&nbsp;'
                                . '<font color="white">'.lang('Current users') 
. ': ' . $GLOBALS['phpgw']->session->total() . '</font></a>';
                }
                $now = time();




reply via email to

[Prev in Thread] Current Thread [Next in Thread]