phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] bookmarks/inc class.ui.inc.php hook_preferences...


From: Caeies
Subject: [Phpgroupware-cvs] bookmarks/inc class.ui.inc.php hook_preferences...
Date: Wed, 24 Jan 2007 17:26:18 +0000

CVSROOT:        /cvsroot/phpgroupware
Module name:    bookmarks
Changes by:     Caeies <Caeies> 07/01/24 17:26:17

Modified files:
        inc            : class.ui.inc.php hook_preferences.inc.php 

Log message:
        some call to link() fixed

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/bookmarks/inc/class.ui.inc.php?cvsroot=phpgroupware&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/bookmarks/inc/hook_preferences.inc.php?cvsroot=phpgroupware&r1=1.20&r2=1.21

Patches:
Index: class.ui.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/bookmarks/inc/class.ui.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- class.ui.inc.php    28 Dec 2006 13:35:12 -0000      1.13
+++ class.ui.inc.php    24 Jan 2007 17:26:17 -0000      1.14
@@ -7,7 +7,7 @@
        * @copyright Copyright (C) 2005 Free Software Foundation, Inc. 
http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package bookmarks
-       * @version $Id: class.ui.inc.php,v 1.13 2006/12/28 13:35:12 skwashd Exp 
$
+       * @version $Id: class.ui.inc.php,v 1.14 2007/01/24 17:26:17 Caeies Exp $
        * @internal Based on Bookmarker, Copyright (C) 1998 Padraic Renaghan, 
http://www.renaghan.com/bookmarker
        * @internal Ported to phpGroupWare by Joseph Engo
        * @internal Ported to three-layered design by Michael Totschnig
@@ -1125,7 +1125,7 @@
                                'lang_message' => lang('Message'),
                                'lang_send' => lang('Send'),
                                'from_name' => 
$GLOBALS['phpgw']->common->display_fullname(),
-                               'form_action' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=bookmarks.ui.mail'),
+                               'form_action' => 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'bookmarks.ui.mail')),
                                'to' => $to,
                                'subject' => $subject,
                                'message' => $message

Index: hook_preferences.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/bookmarks/inc/hook_preferences.inc.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- hook_preferences.inc.php    28 Apr 2005 18:59:46 -0000      1.20
+++ hook_preferences.inc.php    24 Jan 2007 17:26:17 -0000      1.21
@@ -5,14 +5,14 @@
        * @copyright Copyright (C) 2005 Free Software Foundation, Inc. 
http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package bookmarks
-       * @version $Id: hook_preferences.inc.php,v 1.20 2005/04/28 18:59:46 
powerstat Exp $
+       * @version $Id: hook_preferences.inc.php,v 1.21 2007/01/24 17:26:17 
Caeies Exp $
        */
 
        $file = array(
-               'Import Bookmarks' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=bookmarks.ui.import'),
-               'Export Bookmarks' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=bookmarks.ui.export'),
-               'Grant Access'  => 
$GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uiaclprefs.index&acl_app='.$appname),
-               'Edit Categories' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uicategories.index&cats_app='
 . $appname . '&global_cats=True')
+               'Import Bookmarks' => $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'bookmarks.ui.import')),
+               'Export Bookmarks' => $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'bookmarks.ui.export')),
+               'Grant Access'  => $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'preferences.uiaclprefs.index', 'acl_app' => $appname)),
+               'Edit Categories' => $GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'preferences.uicategories.index', 'cats_app' => $appname, 
'global_cats' => 'True'))
        );
        display_section('bookmarks','Bookmarks',$file);
 ?>




reply via email to

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