Remove an extra trim();

This commit is contained in:
Justin Hileman
2010-11-26 15:38:45 -05:00
parent c1bac31884
commit b33b1a7bf2
+1 -1
View File
@@ -379,7 +379,7 @@ class Mustache {
$options = array();
foreach (explode(' ', trim($options_string)) as $o) {
if ($p = trim($o)) {
$p = explode('=', trim($p));
$p = explode('=', $p);
$options[$p[0]] = $p[1];
}
}