various bugfixes

This commit is contained in:
Joey Kimsey
2024-08-13 01:19:05 -04:00
parent ed43b2f2df
commit 4388a4baa8
4 changed files with 8 additions and 19 deletions

View File

@ -32,10 +32,6 @@ class Bookmarks extends Plugin {
'pretty' => 'Can use the bookmarks feature',
'default' => false,
],
'createEvents' => [
'pretty' => 'Can add events to bookmarks',
'default' => false,
],
];
public $main_links = [
[
@ -51,12 +47,4 @@ class Bookmarks extends Plugin {
'default' => true,
],
];
public $bookmarks;
public $folders;
public function __construct( $load = false ) {
$this->bookmarks = new Bookmark;
$this->folders = new Folders;
parent::__construct( $load );
}
}