summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-05-16 13:45:17 +0000
committerDries Buytaert <dries@buytaert.net>2007-05-16 13:45:17 +0000
commita243145d3fef5996394518a2a3a9f8254ed2202a (patch)
treebc4306713d48882a357e36d3b82661870c179dd8 /modules/path
parentb4ef53eccc40dd8605a625adbacb603d93fb3acc (diff)
downloadbrdo-a243145d3fef5996394518a2a3a9f8254ed2202a.tar.gz
brdo-a243145d3fef5996394518a2a3a9f8254ed2202a.tar.bz2
- Patch #137767 by chx and pwolanin: multiple menu support.
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index d6beffcf1..59920c7d5 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -128,13 +128,11 @@ function path_set_alias($path = NULL, $alias = NULL, $pid = NULL, $language = ''
if ($path && !$alias) {
// Delete based on path
db_query("DELETE FROM {url_alias} WHERE src = '%s' AND language = '%s'", $path, $language);
- db_query("UPDATE {menu} SET link_path = path WHERE path = '%s'", $path);
drupal_clear_path_cache();
}
else if (!$path && $alias) {
// Delete based on alias
db_query("DELETE FROM {url_alias} WHERE dst = '%s' AND language = '%s'", $alias, $language);
- db_query("UPDATE {menu} SET link_path = path WHERE link_path = '%s'", $alias);
drupal_clear_path_cache();
}
else if ($path && $alias) {
@@ -170,7 +168,6 @@ function path_set_alias($path = NULL, $alias = NULL, $pid = NULL, $language = ''
}
if ($alias_count == 0 || $path_count == 0) {
drupal_clear_path_cache();
- db_query("UPDATE {menu} SET link_path = '%s' WHERE path = '%s'", $alias, $path);
}
}
}