Skip to content

Commit

Permalink
Fix #139
Browse files Browse the repository at this point in the history
  • Loading branch information
creecros committed Nov 8, 2022
1 parent 68e8e7b commit b299fa4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.14.0';
return '1.14.1';
}

public function getPluginHomepage()
Expand Down
2 changes: 1 addition & 1 deletion Template/header/title.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>
<?php if (null !== $this->task->customizerFileModel->getByType(1)) : ?>
<span class="logo">
<a href="<?= $this->url->href('DashboardController', 'show', array(), false, '', t('Dashboard')) ?>">
<a href="<?= $this->url->href('DashboardController', 'show', array(), false, '', t('Dashboard')) ?>" title="Dashboard">
<img src="<?= $this->url->href('CustomizerFileController', 'image', array('plugin' => 'customizer', 'file_id' => $this->task->customizerFileModel->getIdByType(1))) ?>" height="<?= $this->task->configModel->get('headerlogo_size', '30') ?>">
</a>
</span>
Expand Down
2 changes: 1 addition & 1 deletion Template/header/title_older_kb.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>
<?php if (null !== $this->task->customizerFileModel->getByType(1)) : ?>
<span class="logo">
<a href="<?= $this->url->href('DashboardController', 'show', array(), false, '', t('Dashboard')) ?>">
<a href="<?= $this->url->href('DashboardController', 'show', array(), false, '', t('Dashboard')) ?>" title="Dashboard">
<img src="<?= $this->url->href('CustomizerFileController', 'image', array('plugin' => 'customizer', 'file_id' => $this->task->customizerFileModel->getIdByType(1))) ?>" height="<?= $this->task->configModel->get('headerlogo_size', '30') ?>">
</a>
</span>
Expand Down

0 comments on commit b299fa4

Please sign in to comment.