Skip to content

Commit

Permalink
Fix output of inline JS code (Bug #13543).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Sep 8, 2014
1 parent 5d7f43b commit 3c1c89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Ajax/Application/ShowMessage.php
Expand Up @@ -359,7 +359,7 @@ public function showMessage($args)
Horde::startBuffer();
$page_output->outputInlineScript(true);
if ($js_inline = Horde::endBuffer()) {
$result['js'] = $js_inline;
$result['js'] = array($js_inline);
}

$result['save_as'] = strval($result['save_as']->setRaw(true));
Expand Down

0 comments on commit 3c1c89b

Please sign in to comment.