Merge branch '3.7' into 3

This commit is contained in:
Robbie Averill 2018-06-22 18:46:34 +12:00
commit 3097bccadc
2 changed files with 38 additions and 33 deletions

View File

@ -2247,9 +2247,7 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
); );
// "readonly"/viewing version that isn't the current version of the record // "readonly"/viewing version that isn't the current version of the record
$stageOrLiveRecord = Versioned::get_one_by_stage($this->class, Versioned::current_stage(), array( $stageOrLiveRecord = SiteTree::get()->byID($this->ID);
'"SiteTree"."ID"' => $this->ID
));
if($stageOrLiveRecord && $stageOrLiveRecord->Version != $this->Version) { if($stageOrLiveRecord && $stageOrLiveRecord->Version != $this->Version) {
$moreOptions->push(FormAction::create('email', _t('CMSMain.EMAIL', 'Email'))); $moreOptions->push(FormAction::create('email', _t('CMSMain.EMAIL', 'Email')));
$moreOptions->push(FormAction::create('rollback', _t('CMSMain.ROLLBACK', 'Roll back to this version'))); $moreOptions->push(FormAction::create('rollback', _t('CMSMain.ROLLBACK', 'Roll back to this version')));

View File

@ -4,7 +4,10 @@
"description": "The SilverStripe Content Management System", "description": "The SilverStripe Content Management System",
"homepage": "http://silverstripe.org", "homepage": "http://silverstripe.org",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"keywords": ["silverstripe", "cms"], "keywords": [
"silverstripe",
"cms"
],
"authors": [ "authors": [
{ {
"name": "SilverStripe", "name": "SilverStripe",
@ -25,8 +28,12 @@
"require-dev": { "require-dev": {
"phpunit/phpunit": "^3 || ^4 || ^5" "phpunit/phpunit": "^3 || ^4 || ^5"
}, },
"extra": [],
"autoload": { "autoload": {
"classmap": ["tests/behat/", "code"] "classmap": [
"tests/behat/",
"code"
]
}, },
"minimum-stability": "dev" "minimum-stability": "dev"
} }