mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Minor layout tweak
Correcting indentation of isRSS().
This commit is contained in:
parent
ca7f09d0e0
commit
29ffaa8295
@ -1119,13 +1119,13 @@ class Blog_Controller extends Page_Controller
|
||||
/**
|
||||
* Returns true if the $Rss sub-action for categories/tags has been set to "rss"
|
||||
*/
|
||||
private function isRSS()
|
||||
{
|
||||
$rss = $this->request->param('Rss');
|
||||
if(is_string($rss) && strcasecmp($rss, "rss") == 0) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
private function isRSS()
|
||||
{
|
||||
$rss = $this->request->param('Rss');
|
||||
if(is_string($rss) && strcasecmp($rss, "rss") == 0) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user