From 306fca8ec9167c305f2257ff77b980761464492b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Thu, 6 Sep 2007 12:07:31 +0000 Subject: [PATCH] #172604 by pwolanin: remove leading space at _menu_find_router_path() to comply to coding standards --- includes/menu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/menu.inc b/includes/menu.inc index 32fa92bb3a4..95fe9da6930 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -1668,7 +1668,7 @@ function menu_link_save(&$item) { * A path from $menu keys or empty if $link_path points to a nonexisting * place. */ - function _menu_find_router_path($menu, $link_path) { +function _menu_find_router_path($menu, $link_path) { $parts = explode('/', $link_path, MENU_MAX_PARTS); $router_path = $link_path; if (!isset($menu[$router_path])) {