diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-09 17:20:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-09 17:20:18 +0000 |
commit | f2a9d01de29918717080dac4ea8718da845f203f (patch) | |
tree | 177b4ef692002242d4cf1e7094d846cd182b376d /modules/queue.module | |
parent | a30f75f050b87566ff5e0c3409a3dc42008d48bf (diff) | |
download | brdo-f2a9d01de29918717080dac4ea8718da845f203f.tar.gz brdo-f2a9d01de29918717080dac4ea8718da845f203f.tar.bz2 |
- Bugfix: inserting and updating paths was not working. Patch by Matt.
- Bugfix: updated the queue module menu so the "view submission" link appears
in the navigation when enabled. Patch by Matt.
Diffstat (limited to 'modules/queue.module')
-rw-r--r-- | modules/queue.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/queue.module b/modules/queue.module index a6240d422..013e9471a 100644 --- a/modules/queue.module +++ b/modules/queue.module @@ -35,7 +35,7 @@ function queue_perm() { function queue_link($type) { if ($type == "system") { if (user_access("access submission queue")) { - menu("queue", t("view submissions"), NULL, NULL, 1); + menu("queue", t("view submissions"), "queue_page", NULL, 1); } } |