summaryrefslogtreecommitdiff
path: root/includes/actions.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-10 06:10:14 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-10 06:10:14 +0000
commitd7e2e2b06bddcf2f5e1201bf57698741ef06d5b9 (patch)
tree47cf691280e9f11dab22b6f6c3a61e80ae1d1771 /includes/actions.inc
parent6bdd105f22904744385b5d91ebe38bc7595f586b (diff)
downloadbrdo-d7e2e2b06bddcf2f5e1201bf57698741ef06d5b9.tar.gz
brdo-d7e2e2b06bddcf2f5e1201bf57698741ef06d5b9.tar.bz2
#317238 by Pedro Lozano: Fix broken link to orphaned actions in watchdog.
Diffstat (limited to 'includes/actions.inc')
-rw-r--r--includes/actions.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/actions.inc b/includes/actions.inc
index ae94ffe86..8511f6976 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -289,7 +289,7 @@ function actions_synchronize($actions_in_code = array(), $delete_orphans = FALSE
}
}
else {
- $link = l(t('Remove orphaned actions'), 'admin/build/actions/orphan');
+ $link = l(t('Remove orphaned actions'), 'admin/settings/actions/orphan');
$count = count($actions_in_db);
$orphans = implode(', ', $orphaned);
watchdog('actions', format_plural($count, 'One orphaned action (%orphans) exists in the actions table. !link', '@count orphaned actions (%orphans) exist in the actions table. !link'), array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_WARNING);