[geeklog-cvs] geeklog-1.3/public_html/admin auth.inc.php,1.15,1.16

geeklog-cvs-admin at lists.geeklog.net geeklog-cvs-admin at lists.geeklog.net
Thu May 8 13:23:12 EDT 2003


Update of /usr/cvs/geeklog/geeklog-1.3/public_html/admin
In directory internal.geeklog.net:/tmp/cvs-serv23339/public_html/admin

Modified Files:
	auth.inc.php 
Log Message:
Made sure all setcookie() calls use all 6 parameters and other changes in another attempt to solve the "www vs. non-www" and related login problems.


Index: auth.inc.php
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/public_html/admin/auth.inc.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** auth.inc.php	31 Dec 2002 11:45:24 -0000	1.15
--- auth.inc.php	8 May 2003 17:23:10 -0000	1.16
***************
*** 61,65 ****
              // They want their cookie to persist for some amount of time so set it now
  
!             setcookie($_CONF["cookie_name"],$_USER['uid'],time() + $cooktime,$_CONF["cookie_path"]);
          }
      }
--- 61,67 ----
              // They want their cookie to persist for some amount of time so set it now
  
!             setcookie ($_CONF['cookie_name'], $_USER['uid'],
!                        time() + $cooktime, $_CONF['cookie_path'],
!                        $_CONF['cookiedomain'], $_CONF['cookiesecure']);
          }
      }





More information about the geeklog-cvs mailing list