summaryrefslogtreecommitdiff
path: root/modules/queue.module
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-23 19:28:03 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-23 19:28:03 +0000
commit8f7063b2d8714ad2da9e142ad425fb13f8971f75 (patch)
tree2e96c1f8de10b2bd8cf91670147cea4a4cabbac8 /modules/queue.module
parentdc2d7b2e778c2f7489b0a2116b026d03661cbd44 (diff)
downloadbrdo-8f7063b2d8714ad2da9e142ad425fb13f8971f75.tar.gz
brdo-8f7063b2d8714ad2da9e142ad425fb13f8971f75.tar.bz2
- Fixed bloggerapi not saving the uid for new nodes.
- Cleaned up coding style and unnecessary code in bloggerapi.module. - Removed moderation notice from queue module, it prints even when users are not posting from the web. - Fixed bug #2895: locale: pager doesn't work in search
Diffstat (limited to 'modules/queue.module')
-rw-r--r--modules/queue.module12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/queue.module b/modules/queue.module
index 2a38add81..aa4cf30be 100644
--- a/modules/queue.module
+++ b/modules/queue.module
@@ -252,18 +252,6 @@ function queue_nodeapi(&$node, $op, $arg = 0) {
$node->votes = 0;
}
break;
- case "insert":
- case "update":
- if ($node->moderate && user_access("access submission queue")) {
- theme("box", t("Post queued"), t("The post is queued for approval. You can check the votes in the <a href=\"%queue\">submission queue</a>.", array("%queue" => url("queue"))));
- }
- elseif ($node->moderate) {
- theme("box", t("Post queued"), t("The post is queued for approval. The editors will decide whether it should be published."));
- }
- else {
- theme("box", t("Post published"), t("The post is published."));
- }
- break;
}
}
?>