From 28efb6c6754f3cc1c9977246a55fc72afe5a1d3a Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Wed, 30 Jul 2014 21:31:34 +0400 Subject: [PATCH] fix erro in Form --- Form/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Form/Form.php b/Form/Form.php index 2961fee..a97b9f1 100644 --- a/Form/Form.php +++ b/Form/Form.php @@ -148,7 +148,7 @@ abstract class Form { $data['messages'] = $this->getMessages(); $data['values'] = $this->getSourceValues(); - \Majestic\Session::set(get_class($this), $data); + \Majestic\Session\Session::set(get_class($this), $data); } abstract protected function init();