From d1c29d65954a3b66a2f1106a44adc8fde0edb82e Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Oct 2016 09:06:11 +1300 Subject: [PATCH] Remove double quotes so example is not parsed. [Notice] Undefined variable: map Since it's using double quotes it tries to process $map, $key and $value --- model/Map.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/Map.php b/model/Map.php index 2d4ca6b08..1b6e59380 100644 --- a/model/Map.php +++ b/model/Map.php @@ -196,7 +196,7 @@ class SS_Map implements ArrayAccess, Countable, IteratorAggregate { } user_error( - "SS_Map is read-only. Please use $map->push($key, $value) to append values", + 'SS_Map is read-only. Please use $map->push($key, $value) to append values', E_USER_ERROR ); }