[svn r20600] filtering messages using html-entities - partial FS#4070 (by rvelasquez)

skala
Cristian Fasanando 16 years ago
parent e28a12b381
commit 8d089ec5be
  1. 6
      main/newscorm/lp_build.php

@ -220,7 +220,7 @@ echo '<table cellpadding="0" cellspacing="0" class="lp_build">';
} else {
if($is_new) {
echo '<div class="confirmation-message">';
echo get_lang("LearnPathAdded");
echo api_convert_encoding(get_lang("LearnPathAdded"), ENT_QUOTES, $charset);
echo '</div>';
}
if($is_new) {
@ -228,8 +228,8 @@ echo '<table cellpadding="0" cellspacing="0" class="lp_build">';
} else {
// Display::display_normal_message(get_lang('LPCreatedAddChapterStep'), false);
echo '<div class="normal-message">';
echo get_lang("LearnPathAdded");
echo '</div>';
echo api_convert_encoding(get_lang("LearnPathAdded"), ENT_QUOTES, $charset);
echo '</div>';
}
}
echo '</td>';

Loading…
Cancel
Save