diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-18 11:20:04 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-18 11:20:04 -0400 |
commit | 2de52654e2b253d9d6bbe47746245d58e96be652 (patch) | |
tree | 2a6d67f2b976a99ebb16c79ff245e073b0b7297c | |
parent | 0ee3b6c57fd92c6f5a44e56c5b73c6b5bf06214e (diff) |
change sitename h2 to branding p
darcs-hash:20080618152004-84dde-4d97997a9842ff1db550152266b51048df9e7281.gz
-rw-r--r-- | lib/util.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 18ac303d5..0e3af013d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -190,9 +190,11 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall= 'alt' => $config['site']['name'], 'id' => 'logo')); common_element_end('a'); + } else { + common_element('p', 'branding', $config['site']['name']); } + common_element('h1', 'pagetitle', $pagetitle); - common_element('h2', 'sitename', $config['site']['name']); if ($headercall) { if ($data) { |