diff options
author | Adrian Lang <mail@adrianlang.de> | 2009-03-11 10:07:41 +0100 |
---|---|---|
committer | Adrian Lang <mail@adrianlang.de> | 2009-03-11 10:07:41 +0100 |
commit | 72338b8c2674b8b6de8ba2d1eafeac4f27d5af92 (patch) | |
tree | 6562a1e393c2ea9b3f4fdf901a7509b34eef863b /actions/publicrss.php | |
parent | 622cc150d86265cbb1dcd35ae11f4941d42ffdeb (diff) | |
parent | c6cd87c106b763ed5610dae64e5a02ba86609ece (diff) |
Merge branch '0.7.x' of http://git.gitorious.org/laconica/erichelgeson-clone into review/0.7.x
Diffstat (limited to 'actions/publicrss.php')
-rw-r--r-- | actions/publicrss.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/actions/publicrss.php b/actions/publicrss.php index c35877997..77e26e0f4 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -84,12 +84,11 @@ class PublicrssAction extends Rss10Action */ function getChannel() { - global $config; $c = array( 'url' => common_local_url('publicrss') - , 'title' => sprintf(_('%s Public Stream'), $config['site']['name']) + , 'title' => sprintf(_('%s Public Stream'), common_config('site', 'name')) , 'link' => common_local_url('public') - , 'description' => sprintf(_('All updates for %s'), $config['site']['name'])); + , 'description' => sprintf(_('All updates for %s'), common_config('site', 'name'))); return $c; } |