summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-29 06:47:19 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-29 06:47:19 +0000
commitc8daca07d29ee006f34d7e4978d2f774a1d3da9b (patch)
tree03f0dd2226d810e120961570bba51b08ae866ec2 /includes/common.inc
parentabc8317a0bf0bacd8daa1ce9e256868e586cd03a (diff)
downloadbrdo-c8daca07d29ee006f34d7e4978d2f774a1d3da9b.tar.gz
brdo-c8daca07d29ee006f34d7e4978d2f774a1d3da9b.tar.bz2
- Patch #5448 by pz: removed code duplication from theme.inc.
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index bc8c57564..ab5317276 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -107,9 +107,9 @@ function drupal_set_html_head($data = NULL) {
function drupal_get_html_head() {
global $base_url;
- $output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />";
+ $output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
$output .= "<base href=\"$base_url/\" />\n";
- $output .= "<style type=\"text/css\">\n";
+ $output .= "<style type=\"text/css\" media=\"all\">\n";
$output .= "@import url(misc/drupal.css);\n";
$output .= "</style>\n";