Skip to content

Commit f9aedbc

Browse files
authored
Merge pull request #587 from highstrike/master
fix for #582
2 parents b8781ea + e3e283a commit f9aedbc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Template/Element/cache_panel.ctp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ $(document).ready(function() {
6969
type: 'POST'
7070
});
7171
xhr.done(function(response) {
72-
showMessage(messageEl, name + ' ' + '<?= __d('debug_kit', 'cache cleared.' ?>'))
72+
showMessage(messageEl, name + ' ' + '<?= __d('debug_kit', 'cache cleared.') ?>');
7373
}).error(function(response) {
7474
showMessage(messageEl, name + ' ' + '<?= __d('debug_kit', 'cache could not be cleared.') ?>');
7575
});

src/Template/Element/mail_panel.ctp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p class="info">
22
<?= __d('debug_kit',
33
'Why not test your emails interactively instead? Go to the {0}',
4-
$this->Html->link(__d('debug_kit', 'Email previews page'), ['controller' => 'MailPreview', 'action' => 'index'], ['target' => '_blank']);) ?>
4+
$this->Html->link(__d('debug_kit', 'Email previews page'), ['controller' => 'MailPreview', 'action' => 'index'], ['target' => '_blank'])) ?>
55
</p>
66
<?php
77
if (empty($emails)) {

src/Template/Element/packages_panel.ctp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
}
9797

9898
function buildLoader() {
99-
return '<div class="loading"><?= <?= __d('debug_kit', 'Loading') . ' ' . $this->Html->image('DebugKit./img/cake.icon.png', ['class' => 'indicator'])?></div>';
99+
return '<div class="loading"><?= __d('debug_kit', 'Loading') . ' ' . $this->Html->image('DebugKit./img/cake.icon.png', ['class' => 'indicator']) ?></div>';
100100
}
101101

102102
function buildSuccessfulMessage(response) {

0 commit comments

Comments
 (0)