summaryrefslogtreecommitdiff
path: root/includes/actions.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-08-11 06:57:13 +0000
committerDries Buytaert <dries@buytaert.net>2008-08-11 06:57:13 +0000
commitd81a8c14a87e35b06ed67a0b3e90fcbaa8d4fffe (patch)
tree8d4492d80ec9c52f81126c81a92433008463e4c4 /includes/actions.inc
parent0d1995a828dd530092d23ef8a1c5062e080facec (diff)
downloadbrdo-d81a8c14a87e35b06ed67a0b3e90fcbaa8d4fffe.tar.gz
brdo-d81a8c14a87e35b06ed67a0b3e90fcbaa8d4fffe.tar.bz2
- Patch #293434 by eMPee584 and Damien: fixed broken watchdog call.
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 27f7bdf27..b67c1d183 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -298,7 +298,7 @@ function actions_synchronize($actions_in_code = array(), $delete_orphans = FALSE
else {
$link = l(t('Remove orphaned actions'), 'admin/build/actions/orphan');
$count = count($actions_in_db);
- 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), 'warning'));
+ 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);
}
}
}