diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-18 11:46:43 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-18 11:46:43 -0400 |
commit | a4b36e28f46433976760102a75595b36d87dd6d7 (patch) | |
tree | 1028ccdadfce2037735c38a6a5b7dbd72bbb6d8f /lib/util.php | |
parent | 56125383f437698e28c3856b25845b5590d9df64 (diff) |
link in the branding p
darcs-hash:20080618154643-84dde-e77d6bf486806725579cdfe922ccbe3e59e008e1.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 22350586c..5091c4bad 100644 --- a/lib/util.php +++ b/lib/util.php @@ -193,7 +193,10 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall= 'id' => 'logo')); common_element_end('a'); } else { - common_element('p', array('id' => 'branding'), $config['site']['name']); + common_element_start('p', array('id' => 'branding')); + common_element('a', array('href' => common_local_url('public')), + $config['site']['name']); + common_element_end('p'); } common_element('h1', 'pagetitle', $pagetitle); |