mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
MINOR Fixed history panel non-ajax loading and version links in "comparing X and Y" titles
This commit is contained in:
parent
872239830c
commit
10e76830c4
@ -23,24 +23,32 @@ class CMSPageHistoryController extends CMSMain {
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
function show() {
|
||||
return array(
|
||||
'EditForm' => $this->ShowVersionForm(
|
||||
$this->request->param('VersionID')
|
||||
)
|
||||
function show($request) {
|
||||
$form = $this->ShowVersionForm(
|
||||
$request->param('VersionID')
|
||||
);
|
||||
if($this->isAjax()) {
|
||||
$content = $form->forTemplate();
|
||||
} else {
|
||||
$content = $this->customise(array('EditForm' => $form))->renderWith($this->getViewer('show'));
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
function compare() {
|
||||
return array(
|
||||
'EditForm' => $this->CompareVersionsForm(
|
||||
$this->request->param('VersionID'),
|
||||
$this->request->param('OtherVersionID')
|
||||
)
|
||||
function compare($request) {
|
||||
$form = $this->CompareVersionsForm(
|
||||
$request->param('VersionID'),
|
||||
$request->param('OtherVersionID')
|
||||
);
|
||||
if($this->isAjax()) {
|
||||
$content = $form->forTemplate();
|
||||
} else {
|
||||
$content = $this->customise(array('EditForm' => $form))->renderWith($this->getViewer('show'));
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -92,7 +100,7 @@ class CMSPageHistoryController extends CMSMain {
|
||||
|
||||
if($compareID) {
|
||||
$link = Controller::join_links(
|
||||
$this->Link('version'),
|
||||
$this->Link('show'),
|
||||
$id
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user