From e13cf753ae8c5cb6d19a9c0727707addbd63c0a4 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Sat, 10 Nov 2012 07:18:35 -0800 Subject: [PATCH] Issue #1492378 by kbasarab: follow-up docs correction on autocomplete paths --- core/includes/form.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/includes/form.inc b/core/includes/form.inc index 6956f042704..226d4a69d98 100644 --- a/core/includes/form.inc +++ b/core/includes/form.inc @@ -3872,6 +3872,8 @@ function theme_vertical_tabs($variables) { * array_shift($args); * array_shift($args); * // We store the user's original input in $keywords, including any slashes. + * // Note: A prepended or trailing slash will be removed. For example, if the + * // user enters '/a/few/words/' then $keywords will contain 'a/few/words'. * $keywords = implode('/', $args); * * // Your code here.