This commit is contained in:
spekulatius 2014-12-17 01:22:52 +00:00
commit fc9253a943
1 changed files with 4 additions and 1 deletions

View File

@ -48,7 +48,10 @@ class VersionFeed_Controller extends Extension {
*/
public function changes() {
// Check viewability of changes
if(!Config::inst()->get('VersionFeed', 'changes_enabled') || !$this->owner->PublicHistory) {
if(!Config::inst()->get('VersionFeed', 'changes_enabled')
|| !$this->owner->PublicHistory
|| $this->owner->Version == -1
) {
return $this->owner->httpError(404, 'Page history not viewable');
}