Remove an extra trim();
This commit is contained in:
+1
-1
@@ -379,7 +379,7 @@ class Mustache {
|
|||||||
$options = array();
|
$options = array();
|
||||||
foreach (explode(' ', trim($options_string)) as $o) {
|
foreach (explode(' ', trim($options_string)) as $o) {
|
||||||
if ($p = trim($o)) {
|
if ($p = trim($o)) {
|
||||||
$p = explode('=', trim($p));
|
$p = explode('=', $p);
|
||||||
$options[$p[0]] = $p[1];
|
$options[$p[0]] = $p[1];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user