diff options
author | Malf Furious <m@lfurio.us> | 2016-03-11 22:48:36 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-27 20:16:32 -0400 |
commit | a5eb5c0ee075b8d307e63ce936f2bc4b4592ed21 (patch) | |
tree | dd8789311dbaf7c8676c41683ff68d25ad6f93c1 | |
parent | 3bd0d2779534221af0db22e5b5bc86faaa3b2957 (diff) | |
download | scrott-a5eb5c0ee075b8d307e63ce936f2bc4b4592ed21.tar.gz scrott-a5eb5c0ee075b8d307e63ce936f2bc4b4592ed21.zip |
Call common default action handler from dashboard controller
Diffstat (limited to '')
-rw-r--r-- | app/controller/dashboard.control.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controller/dashboard.control.php b/app/controller/dashboard.control.php index 9a279ca..53ca160 100644 --- a/app/controller/dashboard.control.php +++ b/app/controller/dashboard.control.php @@ -15,6 +15,7 @@ class Dashboard extends Controller { $mod = new DashboardModel(); $mod->common_handleFormSubmissions($_REQUEST['input']); + $mod->common_deflt(); $this->action_default($mod); } |