From b33b1a7bf2784e07bee46f21722f6ee506800c49 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Fri, 26 Nov 2010 15:38:45 -0500 Subject: [PATCH] Remove an extra trim(); --- Mustache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } }