summaryrefslogtreecommitdiffstats
path: root/app/model/except.mod.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-02-17 20:56:14 -0500
committerMalf Furious <m@lfurio.us>2016-02-17 20:56:14 -0500
commit6ab4290083da1762be7dbcad3c6f3c7a754ccef0 (patch)
tree0edc3816fc89d645279e055bd696ca1e1fd7dff6 /app/model/except.mod.php
parentc003600effc33db5eef3bb41d8715a3c9daf04b2 (diff)
downloadscrott-6ab4290083da1762be7dbcad3c6f3c7a754ccef0.tar.gz
scrott-6ab4290083da1762be7dbcad3c6f3c7a754ccef0.zip
Update Except model, deflt action to consume $message for display on page
Diffstat (limited to 'app/model/except.mod.php')
-rw-r--r--app/model/except.mod.php3
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;
}
}