Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Jan 1, 2023
2 parents 3c1c1f4 + b815b0c commit 0313500
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.1.1
## 01/01/2023

1. [](#bugfix)
* Fixed error when `$link['external']` is not set

# v1.1.0
## 12/28/2022

Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Quick Tray Links
type: plugin
slug: quick-tray-links
version: 1.1.0
version: 1.1.1
description: Easily add customizable admin quick tray links
icon: link
author:
Expand Down
2 changes: 1 addition & 1 deletion quick-tray-links.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function onAdminMenu()
'authorize' => isset($link['authorize']) ? $link['authorize'] : ''

];
if ($link['external'] == true) {
if (isset($link['external']) and $link['external'] == true) {
$options['target'] = '_blank';
}
$this->grav['twig']->plugins_quick_tray['QuickTrayLinks-' . $counter++] = $options;
Expand Down

0 comments on commit 0313500

Please sign in to comment.