[geeklog-cvs] geeklog-1.3/public_html users.php,1.70,1.71

blaine at geeklog.net blaine at geeklog.net
Thu Jan 1 22:17:48 EST 2004


Update of /usr/cvs/geeklog/geeklog-1.3/public_html
In directory geeklog_prod:/tmp/cvs-serv22978/public_html

Modified Files:
	users.php 
Log Message:
Corrected bug with custom user registration. If bad account info was entered - it was then skipping the custom registration form

Index: users.php
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/public_html/users.php,v
retrieving revision 1.70
retrieving revision 1.71
diff -C2 -d -r1.70 -r1.71
*** users.php	3 Oct 2003 13:01:22 -0000	1.70
--- users.php	2 Jan 2004 03:17:46 -0000	1.71
***************
*** 887,891 ****
              // Got bad account info from registration process, show error
              // message and display form again
!             $display .= newuserform();
              break;
          default:
--- 887,895 ----
              // Got bad account info from registration process, show error
              // message and display form again
!             if ($_CONF['custom_registration'] AND (function_exists(custom_userform))) {
!                 $display .= custom_userform ('new');
!             } else {
!                 $display .= newuserform ();
!             }
              break;
          default:





More information about the geeklog-cvs mailing list