Revision: 478
http://sciret.svn.sourceforge.net/sciret/?rev=478&view=rev
Author: alpeb
Date: 2007-08-11 17:45:11 -0700 (Sat, 11 Aug 2007)
Log Message:
-----------
fixed notice error
Modified Paths:
--------------
branches/release-candidates/sciret-1.2/actions/EditUser.php
Modified: branches/release-candidates/sciret-1.2/actions/EditUser.php
===================================================================
--- branches/release-candidates/sciret-1.2/actions/EditUser.php 2007-08-10 10:11:14 UTC (rev 477)
+++ branches/release-candidates/sciret-1.2/actions/EditUser.php 2007-08-12 00:45:11 UTC (rev 478)
@@ -54,7 +54,7 @@
$_SESSION['message'] = $this->user->lang('You need to fill the following fields: ').implode(', ', $missingFieldsArr);
}
- if ($missingFields || $invalidPassword) {
+ if ($missingFieldsArr || $invalidPassword) {
$_SESSION['formFields'] = array(
'firstName' => $_POST['firstName'],
'lastName' => $_POST['lastName'],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|