summaryrefslogtreecommitdiff
path: root/modules/queue.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-07-07 20:18:22 +0000
committerDries Buytaert <dries@buytaert.net>2004-07-07 20:18:22 +0000
commit3568ed57e1fc0b0a46ad683b529ea5823a7b78d4 (patch)
tree2a7271215466e90c67bca910bde224e9f405c8cf /modules/queue.module
parentbddcee534fb666890d82089742ec709a718588dc (diff)
downloadbrdo-3568ed57e1fc0b0a46ad683b529ea5823a7b78d4.tar.gz
brdo-3568ed57e1fc0b0a46ad683b529ea5823a7b78d4.tar.bz2
- Moving the title.module from core to contrib as discussed on the mailing list.
Diffstat (limited to 'modules/queue.module')
-rw-r--r--modules/queue.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/queue.module b/modules/queue.module
index 6f8537eba..e54e88e0a 100644
--- a/modules/queue.module
+++ b/modules/queue.module
@@ -253,13 +253,13 @@ function queue_nodeapi(&$node, $op) {
case 'insert':
case 'update':
if ($node->moderate && user_access('access submission queue')) {
- drupal_set_message(t('The post is queued for approval. You can check the votes in the <a href="%queue">submission queue</a>.', array('%queue' => url('queue'))));
+ drupal_set_message(t('the post is queued for approval. You can check the votes in the <a href="%queue">submission queue</a>.', array('%queue' => url('queue'))));
}
else if ($node->moderate) {
- drupal_set_message(t('The post is queued for approval. The editors will decide whether it should be published.'));
+ drupal_set_message(t('the post is queued for approval. The editors will decide whether it should be published.'));
}
else {
- drupal_set_message(t('The post is published.'));
+ drupal_set_message(t('the post is published.'));
}
break;
}