MINOR: change blog alternative name to use global project_name variable

This commit is contained in:
Saophalkun Ponlu 2009-05-20 02:34:57 +00:00
parent 61a2cc2332
commit 488319ceb5

View File

@ -280,10 +280,10 @@ class BlogTree_Controller extends Page_Controller {
* Get the rss feed for this blog holder's entries
*/
function rss() {
global $project;
global $project_name;
$blogName = $this->Name;
$altBlogName = $project . ' blog';
$altBlogName = $project_name . ' blog';
$entries = $this->Entries(20);