summaryrefslogtreecommitdiff
path: root/modules/digibug
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2011-01-15 13:14:43 -0800
committerBharat Mediratta <bharat@menalto.com>2011-01-15 13:14:43 -0800
commitee13b934f46d67982e5eeea21f81ac58f166741c (patch)
tree3a37f19253d2f6ae17b5e190a85c6b48b0de95d5 /modules/digibug
parent38b74932878e8e0c7eb071552568bbb014355996 (diff)
Fix all the head() and admin_head() theme callbacks to return the
results of the $theme->css() and $theme->script() calls. This handles the case where combining scripts/css returns HTML instead of putting it in the queue for combination. Fixes #1611.
Diffstat (limited to 'modules/digibug')
-rw-r--r--modules/digibug/helpers/digibug_theme.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/digibug/helpers/digibug_theme.php b/modules/digibug/helpers/digibug_theme.php
index d146e17d..1106910e 100644
--- a/modules/digibug/helpers/digibug_theme.php
+++ b/modules/digibug/helpers/digibug_theme.php
@@ -19,6 +19,6 @@
*/
class digibug_theme_Core {
static function head($theme) {
- $theme->script("digibug.js");
+ return $theme->script("digibug.js");
}
}