diff --git a/Mustache.php b/Mustache.php index 56fb153..afbc353 100644 --- a/Mustache.php +++ b/Mustache.php @@ -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]; } }