diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-05-01 05:35:56 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-05-01 05:35:56 +0000 |
commit | 590eceaf93a8cd347484fdcb2dd4d5f1d9fe7adf (patch) | |
tree | 3d48a3dd837e9d154607b1a4784dfaa154276b52 /modules/organize/controllers | |
parent | 8deabcc195a8b37311a1356a1fe58560a97454b2 (diff) |
Set organize messages to use existing gMessage, added album cover message.
Diffstat (limited to 'modules/organize/controllers')
-rw-r--r-- | modules/organize/controllers/organize.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/organize/controllers/organize.php b/modules/organize/controllers/organize.php index 41eea643..3059d8e9 100644 --- a/modules/organize/controllers/organize.php +++ b/modules/organize/controllers/organize.php @@ -138,6 +138,9 @@ class Organize_Controller extends Controller { $item = ORM::factory("item", (int)$task->get("target")); $type = $task->get("type"); switch ($type) { + case "albumCover": + $task->status = t("Album cover set"); + break; case "move": $task->status = t("Move to '%album' completed", array("album" => $item->title)); break; |