diff options
Diffstat (limited to 'codebase/strategy.php')
-rw-r--r-- | codebase/strategy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/strategy.php b/codebase/strategy.php index 92deadc..c011297 100644 --- a/codebase/strategy.php +++ b/codebase/strategy.php @@ -46,7 +46,7 @@ class RenderStrategy { protected function simple_mix($mix, $data) { // get mix details for ($i = 0; $i < count($mix); $i++) - $data[$mix[$i]["name"]] = is_string($mix[$i]["value"]) ? $mix[$i]["value"] : ""; + $data[$mix[$i]["name"]] = is_object($mix[$i]["value"]) ? "" : $mix[$i]["value"]; return $data; } |