summaryrefslogtreecommitdiff
path: root/includes/actions.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-15 16:07:47 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-15 16:07:47 +0000
commit6c60707449dd9d7007b43eb92866893a5c2adadd (patch)
tree8559a23bf47c98df4b7d7d3a5b1a31c665b7de12 /includes/actions.inc
parent4ebaf8b65992a7bb78b97e3639ab83d4be3dc7ea (diff)
downloadbrdo-6c60707449dd9d7007b43eb92866893a5c2adadd.tar.gz
brdo-6c60707449dd9d7007b43eb92866893a5c2adadd.tar.bz2
#308526 by chx: Actions do not reset on sync.
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 0aaa972c6..79cd0f7ec 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -250,7 +250,7 @@ function actions_function_lookup($hash) {
*/
function actions_synchronize($actions_in_code = array(), $delete_orphans = FALSE) {
if (!$actions_in_code) {
- $actions_in_code = actions_list();
+ $actions_in_code = actions_list(TRUE);
}
$actions_in_db = array();
$result = db_query("SELECT * FROM {actions} WHERE parameters = ''");