diff options
Diffstat (limited to '')
-rw-r--r-- | app/class/issue.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/class/issue.class.php b/app/class/issue.class.php index 5d1daec..57fc588 100644 --- a/app/class/issue.class.php +++ b/app/class/issue.class.php @@ -37,6 +37,7 @@ class issue extends obj "seen", "description", "opened", + "assigned", "authored", "closed", "due", @@ -89,6 +90,7 @@ class issue extends obj { $this->seen = 0; $this->assignee = $assignee->guid; + $this->assigned = self::getCurrentTimestamp(); $this->saveObj(); } |