openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b9b18bc28485abebf41ae76e3120f5be8573e199
parent 0157833863d797b4bd5db95a43bb0d956765a145
Author: Jan Dankert <devnull@localhost>
Date:   Fri,  9 Feb 2018 03:09:49 +0100

LastModified-Date setzen (schneller).

Diffstat:
modules/cms-core/action/FolderAction.class.php | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/cms-core/action/FolderAction.class.php b/modules/cms-core/action/FolderAction.class.php @@ -53,8 +53,10 @@ class FolderAction extends ObjectAction { parent::__construct(); $this->folder = new Folder( $this->getRequestId() ); - $this->folder->languageid = $this->getRequestVar('languageid'); + $this->folder->languageid = $this->request->getLanguageId(); $this->folder->load(); + + $this->lastModified( $this->folder->lastchangeDate); }