diff options
author | Malf Furious <m@lfurio.us> | 2018-02-07 22:41:35 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-02-07 22:41:35 -0500 |
commit | 0dd76669c58d1ae62d761d8f7c815b464963ca4a (patch) | |
tree | a22a44b47684d7f20305bb3b0258a01fa6edccf5 /app/class/issue.class.php | |
parent | 66aa954421c093ad54da8806e42d4ff9bba59091 (diff) | |
parent | 0bae6d4063c82c6522e3a5887bc25a2162504b69 (diff) | |
download | scrott-0dd76669c58d1ae62d761d8f7c815b464963ca4a.tar.gz scrott-0dd76669c58d1ae62d761d8f7c815b464963ca4a.zip |
Merge branch 'bug/object' into dev
Diffstat (limited to 'app/class/issue.class.php')
-rw-r--r-- | app/class/issue.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/class/issue.class.php b/app/class/issue.class.php index b61a6e3..1c77894 100644 --- a/app/class/issue.class.php +++ b/app/class/issue.class.php @@ -12,7 +12,7 @@ * For more information, please refer to UNLICENSE */ -require_once "class/object.class.php"; +require_once "class/obj.class.php"; require_once "class/stage.class.php"; require_once "class/user.class.php"; require_once "class/mesg.class.php"; @@ -21,7 +21,7 @@ require_once "class/mesg.class.php"; * This class models Scrott issues. Issues represent units of work, can * be assigned to users, and advance through a pipeline. */ -class issue extends object +class issue extends obj { /* * Constructor |