diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bluemarine/page.tpl.php | 1 | ||||
-rw-r--r-- | themes/chameleon/chameleon.theme | 1 | ||||
-rw-r--r-- | themes/engines/phptemplate/phptemplate.engine | 1 | ||||
-rw-r--r-- | themes/pushbutton/page.tpl.php | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/themes/bluemarine/page.tpl.php b/themes/bluemarine/page.tpl.php index e65278d6a..385df6fa9 100644 --- a/themes/bluemarine/page.tpl.php +++ b/themes/bluemarine/page.tpl.php @@ -5,6 +5,7 @@ <title><?php print $head_title ?></title> <?php print $head ?> <?php print $styles ?> + <?php print $scripts ?> <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script> </head> diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index fd1580d52..056ffdf4c 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -38,6 +38,7 @@ function chameleon_page($content) { $output .= " <title>". ($title ? strip_tags($title) ." | ". variable_get("site_name", "drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")) ."</title>\n"; $output .= drupal_get_html_head(); $output .= drupal_get_css(); + $output .= drupal_get_js(); $output .= "</head>"; $output .= "<body>\n"; $output .= " <div id=\"header\">"; diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine index 79f0f989a..7533888fc 100644 --- a/themes/engines/phptemplate/phptemplate.engine +++ b/themes/engines/phptemplate/phptemplate.engine @@ -214,6 +214,7 @@ function phptemplate_page($content) { 'site_slogan' => (theme_get_setting('toggle_slogan') ? variable_get('site_slogan', '') : ''), 'css' => drupal_add_css(), 'styles' => drupal_get_css(), + 'scripts' => drupal_get_js(), 'tabs' => theme('menu_local_tasks'), 'title' => drupal_get_title() ); diff --git a/themes/pushbutton/page.tpl.php b/themes/pushbutton/page.tpl.php index 33fb1d317..3b8219556 100644 --- a/themes/pushbutton/page.tpl.php +++ b/themes/pushbutton/page.tpl.php @@ -5,6 +5,7 @@ <meta http-equiv="Content-Style-Type" content="text/css" /> <?php print $head ?> <?php print $styles ?> + <?php print $scripts ?> </head> <body bgcolor="#ffffff"> |