summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-23 22:24:19 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-23 22:24:19 +0000
commita7149821d61d00cfb62d5ab67cbc2a282d53d41a (patch)
treefa0022b756838f583c2641a84241de80fb177606 /modules/trigger
parentf2d90e99fb1107d78291ab2899f9fdb08bdfa979 (diff)
downloadbrdo-a7149821d61d00cfb62d5ab67cbc2a282d53d41a.tar.gz
brdo-a7149821d61d00cfb62d5ab67cbc2a282d53d41a.tar.bz2
#600974 by effulgentsia, JohnAlbin, sun, and Damien Tournoud: Allow theme functions to take one argument without any hacks. NOTE: This is an API change in hook_theme().
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index 9742509bb..d15ff0494 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -183,7 +183,7 @@ function trigger_get_assigned_actions($hook) {
function trigger_theme() {
return array(
'trigger_display' => array(
- 'arguments' => array('element' => NULL),
+ 'render element' => 'element',
'file' => 'trigger.admin.inc',
),
);