diff options
Diffstat (limited to 'modules/path')
-rw-r--r-- | modules/path/path.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 6022ccdee..5ab2ebea5 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -220,7 +220,7 @@ function path_load($pid) { } function path_delete($pid) { - db_query("DELETE FROM path WHERE pid = '%d'", $pid); + db_query("DELETE FROM {url_alias} WHERE pid = '%d'", $pid); return t("the alias has been deleted."); } |