diff options
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 24ac11ac0..86039a684 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -25,13 +25,13 @@ function path_admin() { break; case "delete": - $output = status(path_delete(arg(3))); + drupal_set_message(path_delete(arg(3))); $output .= path_overview(); break; case t("Create new alias"): case t("Update alias"): - $output .= status(path_save($edit)); + drupal_set_message(path_save($edit)); break; default: |