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

Bug #5020 Code-bug, missing break in switch
Submitted: 2005-08-06 22:06 UTC
From: mihamix at openttd dot org Assigned: clay
Status: Closed Package: VersionControl_SVN
PHP Version: Irrelevant OS: All
Roadmaps: 0.3.1    
Subscription  


 [2005-08-06 22:06 UTC] mihamix at openttd dot org
Description: ------------ in Commit.php after line 241 there is a missing break (version 0.3.0-alpha1), which causes that the generated command line will be broken.

Comments

 [2006-10-06 18:45 UTC] scottmattocks (Scott Mattocks)
--- SVN/Commit.php 2004-05-27 11:12:49.000000000 -0400 +++ /home/scott/playground/pear/VersionControl_SVN/SVN/Commit.php 2006-10-06 13:13:45.000000000 -0400 @@ -239,6 +239,7 @@ case 'file': case 'message': $_switches .= "--$switch \"$val\" "; + break; // Added to fix bug #5020 case 'quiet': case 'no-auth-cache': case 'force-log':
 [2007-09-17 18:31 UTC] clay (Clay Loveless)
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.