Browse Source

Remove an extra trim();

Justin Hileman 15 years ago
parent
commit
b33b1a7bf2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Mustache.php

+ 1 - 1
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];
 			}
 		}