diff options
author | Eric Helgeson <helfire@Erics-MBP.local> | 2009-03-09 20:01:35 -0500 |
---|---|---|
committer | Eric Helgeson <helfire@Erics-MBP.local> | 2009-03-09 20:01:35 -0500 |
commit | c6cd87c106b763ed5610dae64e5a02ba86609ece (patch) | |
tree | 2f93e5b2f7183fee0c6fcebce9de93033f930ae2 /actions/publicrss.php | |
parent | 945bbf00dc9ee106359e9387956c72c1290d12fc (diff) |
Changed all $config[][] calls to common_config()
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; } |