Dot notation with numeric indexes fix.

This commit is contained in:
jwronsky
2012-02-29 11:33:38 -08:00
committed by Justin Hileman
parent 19289f85e4
commit 6c2b85c36b
4 changed files with 8 additions and 5 deletions
+3 -2
View File
@@ -9,10 +9,11 @@ class DotNotation extends Mustache {
public $person = array(
'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
'age' => 24,
'hobbies' => array('Cycling', 'Fishing'),
'hometown' => array(
'city' => 'Cincinnati',
'city' => 'Cincinnati',
'state' => 'OH',
)
),
);
public $normal = 'Normal';