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/class/model.class.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 'app/class/model.class.php')
-rw-r--r-- | app/class/model.class.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/class/model.class.php b/app/class/model.class.php index 25e34ab..4f597f7 100644 --- a/app/class/model.class.php +++ b/app/class/model.class.php @@ -12,8 +12,6 @@ abstract class Model extends Framework */ function __construct() { - parent::__construct(); - $this->errorlist = array(); $this->warninglist = array(); $this->noticelist = array(); |