Skip to content

Commit

Permalink
Fixed issue: CSS being broken when loading email template for detaile…
Browse files Browse the repository at this point in the history
…d admin notification
  • Loading branch information
c-schmitz committed Sep 1, 2014
1 parent b0a7b59 commit 94e6011
Showing 1 changed file with 9 additions and 1 deletion.
Expand Up @@ -24,7 +24,15 @@ class="fillin"
value='<?php $clang->eT("Reset"); ?>'
class="fillin"
data-target="<?php echo "email_{$tab}_{$grouplang}"; ?>"
data-value="<?php echo htmlspecialchars(conditionalNewlineToBreak($details['default']['body'],$ishtml),ENT_QUOTES); ?>"
data-value="<?php
if ($tab=='admin_detailed_notification'){
echo htmlspecialchars($details['default']['body'],ENT_QUOTES);
}
else
{
echo htmlspecialchars(conditionalNewlineToBreak($details['default']['body'],$ishtml),ENT_QUOTES);
}
?>"
/>
</li>
<li>
Expand Down

0 comments on commit 94e6011

Please sign in to comment.