summaryrefslogtreecommitdiff
path: root/modules/organize/controllers
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2009-05-01 05:35:56 +0000
committerChad Kieffer <chad@2tbsp.com>2009-05-01 05:35:56 +0000
commit590eceaf93a8cd347484fdcb2dd4d5f1d9fe7adf (patch)
tree3d48a3dd837e9d154607b1a4784dfaa154276b52 /modules/organize/controllers
parent8deabcc195a8b37311a1356a1fe58560a97454b2 (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.php3
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;