summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-11-24 22:04:10 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-11-24 22:04:10 +0000
commit5cf74ccb72ae9449e892b6642c8fc363a6a18237 (patch)
treec2cc4b9b75f457e369d5ae2ee8008eec24ed2550
parent02d7e96309d118d0b39c1fa20427caf95993e376 (diff)
downloadbrdo-5cf74ccb72ae9449e892b6642c8fc363a6a18237.tar.gz
brdo-5cf74ccb72ae9449e892b6642c8fc363a6a18237.tar.bz2
#27582: menu.inc doc update
-rw-r--r--includes/menu.inc11
1 files changed, 6 insertions, 5 deletions
diff --git a/includes/menu.inc b/includes/menu.inc
index 8acbb28fe..6ff5e0d8a 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -37,11 +37,12 @@
* complete match with a callback it can find. If the path a/b/i is
* requested in the tree above, the callback for a/b would be used.
*
- * The found callback function is called with any arguments specified in
- * the "callback arguments" attribute of its menu item. After these
- * arguments, any remaining components of the path are appended as further
- * arguments. In this way, the callback for a/b above could respond to a
- * request for a/b/i differently than a request for a/b/j.
+ * The found callback function is called with any arguments specified
+ * in the "callback arguments" attribute of its menu item. The
+ * attribute must be an array. After these arguments, any remaining
+ * components of the path are appended as further arguments. In this
+ * way, the callback for a/b above could respond to a request for
+ * a/b/i differently than a request for a/b/j.
*
* For an illustration of this process, see page_example.module.
*