mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +00:00
Merge pull request #189 from silverstripe-rebelalliance/open/7754
BUG: Fixing a issue with a undefined variable in getLink
This commit is contained in:
commit
fdecfbc091
@ -320,7 +320,7 @@ class SilverStripeNavigatorItem_ArchiveLink extends SilverStripeNavigatorItem {
|
||||
}
|
||||
|
||||
function getLink() {
|
||||
return $this->record->AbsoluteLink() . '?archiveDate=' . $date;
|
||||
return $this->record->AbsoluteLink() . '?archiveDate=' . $this->record->LastEdited;
|
||||
}
|
||||
|
||||
function canView($member = null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user