- A one line patch to theme.inc which adds a missing page title variable to
the header() function. Patch by Moshe.4.2.x
parent
648f1e00a7
commit
31d8b14969
|
@ -20,7 +20,7 @@ class BaseTheme {
|
|||
|
||||
function header($title = "") {
|
||||
$output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"DTD/xhtml1-transitional.dtd\">\n";
|
||||
$output .= "<html><head><title>". variable_get(site_name, "drupal") ."</title>";
|
||||
$output .= "<html><head><title>". $title ? $title : variable_get(site_name, "drupal") ."</title>";
|
||||
$output .= theme_head($main);
|
||||
$output .= "</head><body bgcolor=\"$this->background\" text=\"$this->foreground". theme_onload_attribute(). "\">";
|
||||
$output .= "<table border=\"0\" cellspacing=\"4\" cellpadding=\"4\"><tr><td valign=\"top\" width=\"170\">";
|
||||
|
|
Loading…
Reference in New Issue