mirror of
https://github.com/silverstripe/silverstripe-versionfeed
synced 2024-10-22 11:05:31 +02:00
Merge pull request #20 from spekulatius/bug11-cache-tag-invalid
Checking if there is a version to avoid #11.
This commit is contained in:
commit
180a562b51
@ -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 == ''
|
||||
) {
|
||||
return $this->owner->httpError(404, 'Page history not viewable');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user