diff options
Diffstat (limited to 'inc/Menu/Item/Revisions.php')
-rw-r--r-- | inc/Menu/Item/Revisions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/Menu/Item/Revisions.php b/inc/Menu/Item/Revisions.php index 3009a7924..4b220b801 100644 --- a/inc/Menu/Item/Revisions.php +++ b/inc/Menu/Item/Revisions.php @@ -7,15 +7,15 @@ namespace dokuwiki\Menu\Item; * * Access the old revisions of the current page */ -class Revisions extends AbstractItem { - +class Revisions extends AbstractItem +{ /** @inheritdoc */ - public function __construct() { + public function __construct() + { parent::__construct(); $this->accesskey = 'o'; $this->type = 'revs'; $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg'; } - } |