Minor layout tweak

Correcting indentation of isRSS().
This commit is contained in:
ksdhans 2016-06-15 19:33:29 +12:00 committed by GitHub
parent ca7f09d0e0
commit 29ffaa8295

View File

@ -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;
}
}
}