From: toyomoyo Date: Fri, 17 Mar 2006 08:13:48 +0000 (+0000) Subject: blog not blogs X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0deaa99354dbf562bcc622498aad28e07e984087;p=moodle.git blog not blogs --- diff --git a/blog/rsslib.php b/blog/rsslib.php index f1f328d5d4..bc43a1c858 100755 --- a/blog/rsslib.php +++ b/blog/rsslib.php @@ -14,9 +14,9 @@ $rsspix = $CFG->pixpath .'/i/rss.gif'; if ($CFG->slasharguments) { - $rsspath = $CFG->wwwroot.'/rss/file.php/blogs/'.$filtertype.'/'.$filterselect.'/rss.xml'; + $rsspath = $CFG->wwwroot.'/rss/file.php/blog/'.$filtertype.'/'.$filterselect.'/rss.xml'; } else { - $rsspath = $CFG->wwwroot.'/rss/file.php?file=/blogs/'.$filtertype.'/'.$filterselect.'/rss.xml'; + $rsspath = $CFG->wwwroot.'/rss/file.php?file=/blog/'.$filtertype.'/'.$filterselect.'/rss.xml'; } print '
'; @@ -44,7 +44,7 @@ */ function blog_rss_file_name($type, $id) { global $CFG; - $filename = "$CFG->dataroot/rss/blogs/$type/$id/rss.xml"; + $filename = "$CFG->dataroot/rss/blog/$type/$id/rss.xml"; return $filename; }