Revision: 1162
          http://mrbs.svn.sourceforge.net/mrbs/?rev=1162&view=rev
Author:   cimorrison
Date:     2009-07-21 14:43:41 +0000 (Tue, 21 Jul 2009)

Log Message:
-----------
Fixed bug that caused query string to be missing parameter values for day, 
month and year in the "You are user" link in the header in the http and 
remote_user session schemes.   (Didn't affect functionality as search.php was 
resilient, but it caused undefined variable notices when running with notices 
turned on).

Modified Paths:
--------------
    mrbs/trunk/web/session_http.inc
    mrbs/trunk/web/session_remote_user.inc

Modified: mrbs/trunk/web/session_http.inc
===================================================================
--- mrbs/trunk/web/session_http.inc     2009-07-20 16:23:13 UTC (rev 1161)
+++ mrbs/trunk/web/session_http.inc     2009-07-21 14:43:41 UTC (rev 1162)
@@ -69,6 +69,7 @@
 function PrintLogonBox()
 {
   global $user_list_link;
+  global $day, $month, $year;
   
   $user = getUserName();
 

Modified: mrbs/trunk/web/session_remote_user.inc
===================================================================
--- mrbs/trunk/web/session_remote_user.inc      2009-07-20 16:23:13 UTC (rev 
1161)
+++ mrbs/trunk/web/session_remote_user.inc      2009-07-21 14:43:41 UTC (rev 
1162)
@@ -49,7 +49,7 @@
 // Print the logon entry on the top banner.
 function PrintLogonBox()
 {
-  global $user_list_link;
+  global $user_list_link, $day, $month, $year;
   global $auth;
   
   $user = getUserName();


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to