From 535ec5cefa208bb5dd1003cceb49bc52b2db7519 Mon Sep 17 00:00:00 2001 From: Ukiah Danger Smith Date: Fri, 31 Jan 2014 10:14:31 -0500 Subject: [PATCH] Updated call to retrieve data from Slim. --- Views/Savant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Views/Savant.php b/Views/Savant.php index 4ef391f..bd7b083 100644 --- a/Views/Savant.php +++ b/Views/Savant.php @@ -69,7 +69,7 @@ class Savant extends \Slim\View public function render($template) { $savant = $this->getInstance(); - $savant->assign($this->data); + $savant->assign($this->data->all()); return $savant->fetch($template); }