diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-01-04 21:14:57 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-01-04 21:14:57 -0500 |
| commit | d1d04d6feeebeba2aea5333d7a4229fcec799f75 (patch) | |
| tree | 51da4416973b2b60f3d50d5acddf2c4c258c1ff3 /app/Model/SubTask.php | |
| parent | 07b07c7697439dc0e6bdf87f65b4b3bd46f6bfc8 (diff) | |
Add subtasks export and move export actions to a specific controller
Diffstat (limited to 'app/Model/SubTask.php')
| -rw-r--r-- | app/Model/SubTask.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/Model/SubTask.php b/app/Model/SubTask.php index adc5aa73..1c5d1bf0 100644 --- a/app/Model/SubTask.php +++ b/app/Model/SubTask.php @@ -58,15 +58,11 @@ class SubTask extends Base */ public function getStatusList() { - $status = array( + return array( self::STATUS_TODO => t('Todo'), self::STATUS_INPROGRESS => t('In progress'), self::STATUS_DONE => t('Done'), ); - - asort($status); - - return $status; } /** |
