Update of /cvsroot/stack/stack-1-0/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20009/scripts
Modified Files:
stackCAS.php
Log Message:
Index: stackCAS.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/scripts/stackCAS.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** stackCAS.php 9 Nov 2005 11:57:29 -0000 1.9
--- stackCAS.php 9 Nov 2005 13:56:56 -0000 1.10
***************
*** 219,223 ****
}
! $unp['Valid'] = strtolower($unp['Valid']);
if ('false' == strtolower($unp['ValidationValid'])) {
--- 219,225 ----
}
! if (array_key_exists('Valid',$unp)) {
! $unp['Valid'] = strtolower($unp['Valid']);
! }
if ('false' == strtolower($unp['ValidationValid'])) {
|