From: <var...@us...> - 2009-02-18 17:13:16
|
Revision: 6510 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6510&view=rev Author: vargenau Date: 2009-02-18 17:13:09 +0000 (Wed, 18 Feb 2009) Log Message: ----------- Better handle comma in parse_attributes Modified Paths: -------------- trunk/lib/stdlib.php Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2009-02-17 14:47:05 UTC (rev 6509) +++ trunk/lib/stdlib.php 2009-02-18 17:13:09 UTC (rev 6510) @@ -2387,6 +2387,8 @@ $line = substr($line, $i+1); $line = trim ($line); + $line = trim ($line, ","); + $line = trim ($line); return $options + parse_attributes($line); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |