Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 0.5.5

Bug #5867 Test bug.
Submitted: 2005-11-04 17:15 UTC
From: davidc Assigned: davidc
Status: Closed Package: Validate_US
PHP Version: Irrelevant OS: Irrelevant
Roadmaps: 0.5.3    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 38 - 7 = ?

 
 [2005-11-04 17:15 UTC] davidc
Description: ------------ You will notice that there's a bug in the tests, more precisly validate_US.phpt. Parse error because the way its built, there's little typos such as: $var = array( array('val' => '1'), array('val2' => '2'); array('val3' => '3'), array('val4' => '4'), array('val5' => '5'); array('val6' => '6'), ); So you can notice the problem here is that the second key and and 5th key, their end delimities if I may call them like this, are ';' instead of ','. So should be. $var = array( array('val' => '1'), array('val2' => '2'), array('val3' => '3'), array('val4' => '4'), array('val5' => '5'), array('val6' => '6'), );

Comments

 [2005-11-04 17:16 UTC] davidc
This has been fixed in cvs.