Skip to content

Commit

Permalink
MDL-46254 theme: apply filters to theme footnote
Browse files Browse the repository at this point in the history
  • Loading branch information
marinaglancy committed Sep 8, 2014
1 parent ddadff9 commit 1382662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theme/clean/lib.php
Expand Up @@ -140,7 +140,7 @@ function theme_clean_get_html_for_settings(renderer_base $output, moodle_page $p

$return->footnote = '';
if (!empty($page->theme->settings->footnote)) {
$return->footnote = '<div class="footnote text-center">'.$page->theme->settings->footnote.'</div>';
$return->footnote = '<div class="footnote text-center">'.format_text($page->theme->settings->footnote).'</div>';
}

return $return;
Expand Down

0 comments on commit 1382662

Please sign in to comment.