diff options
author | M <m@lfurio.us> | 2015-11-22 03:04:06 -0500 |
---|---|---|
committer | M <m@lfurio.us> | 2015-11-22 03:04:06 -0500 |
commit | 2710f0de8d8d900a0997fd72f315c8a6f07329cf (patch) | |
tree | 2621320d77ad10b051f927d9af43f43406c6b747 /app/controller/sysconf.control.php | |
parent | 7acf1af340b9d11b72bca70731ed6dbcd7c95132 (diff) | |
download | scrott-2710f0de8d8d900a0997fd72f315c8a6f07329cf.tar.gz scrott-2710f0de8d8d900a0997fd72f315c8a6f07329cf.zip |
* Derp, default is a reserved word, calling the function 'deflt' instead
* Removed explicit call to parent constructor in model class, since that function is not explicitly defined
Diffstat (limited to '')
-rw-r--r-- | app/controller/sysconf.control.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controller/sysconf.control.php b/app/controller/sysconf.control.php index b69da87..f96c97e 100644 --- a/app/controller/sysconf.control.php +++ b/app/controller/sysconf.control.php @@ -19,7 +19,7 @@ class Sysconf extends Controller function action_default($mod) { - $mod->default(); + $mod->deflt(); include "view/sysconf/default.view.php"; } } |