From: Chris S. <san...@us...> - 2005-06-18 21:01:19
|
Update of /cvsroot/stack/stack-1-0/scripts/CASpool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8957/scripts/CASpool Modified Files: Tag: frontend_dev stackCAS.php Log Message: Index: stackCAS.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/CASpool/stackCAS.php,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** stackCAS.php 12 Jun 2005 16:10:00 -0000 1.4 --- stackCAS.php 18 Jun 2005 21:01:04 -0000 1.4.2.1 *************** *** 186,190 **** if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = GrabBetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); --- 186,190 ---- if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = stack_util_grabbetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); *************** *** 230,234 **** do { ! $gb = GrabBetween($uploc,'[',']',$offset); $locals[] = $this->CASParsePreparse($gb[0]); $offset=$gb[2]+1; --- 230,234 ---- do { ! $gb = stack_util_grabbetween($uploc,'[',']',$offset); $locals[] = $this->CASParsePreparse($gb[0]); $offset=$gb[2]+1; *************** *** 355,359 **** if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = GrabBetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); --- 355,359 ---- if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = stack_util_grabbetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); |