phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] phpgwapi/inc functions.inc.php


From: Dave Hall
Subject: [Phpgroupware-cvs] phpgwapi/inc functions.inc.php
Date: Tue, 26 Sep 2006 11:16:19 +0000

CVSROOT:        /cvsroot/phpgwapi
Module name:    phpgwapi
Changes by:     Dave Hall <skwashd>     06/09/26 11:16:19

Modified files:
        inc            : functions.inc.php 

Log message:
        fix notice for cd_reason

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/inc/functions.inc.php?cvsroot=phpgwapi&r1=1.206&r2=1.207

Patches:
Index: functions.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/inc/functions.inc.php,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -b -r1.206 -r1.207
--- functions.inc.php   25 Sep 2006 06:32:49 -0000      1.206
+++ functions.inc.php   26 Sep 2006 11:16:19 -0000      1.207
@@ -8,7 +8,7 @@
        * @license http://www.fsf.org/licenses/lgpl.html GNU Lesser General 
Public License
        * @package phpgwapi
        * @subpackage utilities
-       * @version $Id: functions.inc.php,v 1.206 2006/09/25 06:32:49 skwashd 
Exp $
+       * @version $Id: functions.inc.php,v 1.207 2006/09/26 11:16:19 skwashd 
Exp $
        */
        
        
@@ -551,7 +551,7 @@
                                
$GLOBALS['phpgw']->session->phpgw_setcookie('redirect',serialize($_GET),$cookietime=0);
                        }
                        $cd_array = array();
-                       if($GLOBALS['phpgw']->session->cd_reason)
+                       if ( isset($GLOBALS['phpgw']->session->cd_reason) && 
$GLOBALS['phpgw']->session->cd_reason )
                        {
                                $cd_array['cd'] = 
$GLOBALS['phpgw']->session->cd_reason;
                        }




reply via email to

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