From f2a9d01de29918717080dac4ea8718da845f203f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 9 Oct 2003 17:20:18 +0000 Subject: - Bugfix: inserting and updating paths was not working. Patch by Matt. - Bugfix: updated the queue module menu so the "view submission" link appears in the navigation when enabled. Patch by Matt. --- modules/path/path.module | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules/path/path.module') diff --git a/modules/path/path.module b/modules/path/path.module index 7fed2cf71..3dc569462 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -2,7 +2,7 @@ /* $Id$ */ function path_admin() { - $op = strtolower($_POST["op"]); + $op = $_POST["op"]; $edit = $_POST["edit"]; if (user_access("administer url aliases")) { @@ -46,7 +46,6 @@ function path_admin() { } function path_set_alias($path = NULL, $alias = NULL) { - if ($path && !$alias) { db_query("DELETE FROM {path} WHERE src = '%s'", $path); drupal_rebuild_path_map(); -- cgit v1.2.3