summaryrefslogtreecommitdiff
path: root/modules/poll.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-20 21:51:23 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-20 21:51:23 +0000
commit4bdac4333ba34adc61e19180b5f1bcde692615e2 (patch)
treeed30f0417f99d0257bef231f6652d1399d0e520a /modules/poll.module
parent9000f825cc63e6b52ad4f19f633d67aa16fef799 (diff)
downloadbrdo-4bdac4333ba34adc61e19180b5f1bcde692615e2.tar.gz
brdo-4bdac4333ba34adc61e19180b5f1bcde692615e2.tar.bz2
- Patch by JonBob:
Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
Diffstat (limited to 'modules/poll.module')
-rw-r--r--modules/poll.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/poll.module b/modules/poll.module
index e2b7085e9..6fba8859e 100644
--- a/modules/poll.module
+++ b/modules/poll.module
@@ -182,7 +182,10 @@ function poll_link($type, $node = 0, $main) {
if ($type == "system") {
if (user_access("create polls")) {
- menu("node/add/poll", t("poll"), "page", 0);
+ menu("node/add/poll", t("poll"), "node_page", 0);
+ }
+ if (user_access("access content")) {
+ menu("poll", t("polls"), "poll_page", 0, 1);
}
}
else if ($type == "page" && user_access("access content")) {