blob: 8b93461dda461d73141d5c20f2fa9a9c995cbeef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
$output = Minz_Request::param('output', 'normal');
if (FreshRSS_Auth::hasAccess() || Minz_Configuration::allowAnonymous()) {
if ($output === 'normal') {
$this->renderHelper('view/normal_view');
} elseif ($output === 'reader') {
$this->renderHelper('view/reader_view');
} elseif ($output === 'rss') {
$this->renderHelper('view/rss_view');
} else {
Minz_Request::_param('output', 'normal');
$output = 'normal';
$this->renderHelper('view/normal_view');
}
} elseif ($output === 'rss') {
// token has already been checked in the controller so we can show the view
$this->renderHelper('view/rss_view');
} else {
// Normally, it should not happen, but log it anyway
Minz_Log::error('Something is wrong in ' . __FILE__ . ' line ' . __LINE__);
}
|