diff options
author | Malf Furious <m@lfurio.us> | 2016-02-17 20:56:14 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-02-17 20:56:14 -0500 |
commit | 6ab4290083da1762be7dbcad3c6f3c7a754ccef0 (patch) | |
tree | 0edc3816fc89d645279e055bd696ca1e1fd7dff6 /app/model | |
parent | c003600effc33db5eef3bb41d8715a3c9daf04b2 (diff) | |
download | scrott-6ab4290083da1762be7dbcad3c6f3c7a754ccef0.tar.gz scrott-6ab4290083da1762be7dbcad3c6f3c7a754ccef0.zip |
Update Except model, deflt action to consume $message for display on page
Diffstat (limited to 'app/model')
-rw-r--r-- | app/model/except.mod.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/model/except.mod.php b/app/model/except.mod.php index f456227..13a67be 100644 --- a/app/model/except.mod.php +++ b/app/model/except.mod.php @@ -7,8 +7,9 @@ class ExceptModel extends MasterModel /* * Default action */ - function deflt() + function deflt($message) { + $this->message = $message; } } |