git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@8358 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2008-02-01 12:26:14 +00:00
parent 7461851711
commit e27bed357b
2 changed files with 5 additions and 5 deletions

View file

@ -107,8 +107,8 @@ if( $mode != "" )
} }
$template->assign_vars(array( $template->assign_vars(array(
"WORD" => $word_info['word'], "WORD" => htmlspecialchars($word_info['word']),
"REPLACEMENT" => $word_info['replacement'], "REPLACEMENT" => htmlspecialchars($word_info['replacement']),
"L_WORDS_TITLE" => $lang['Words_title'], "L_WORDS_TITLE" => $lang['Words_title'],
"L_WORDS_TEXT" => $lang['Words_explain'], "L_WORDS_TEXT" => $lang['Words_explain'],
@ -257,8 +257,8 @@ else
$template->assign_block_vars("words", array( $template->assign_block_vars("words", array(
"ROW_COLOR" => "#" . $row_color, "ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class, "ROW_CLASS" => $row_class,
"WORD" => $word, "WORD" => htmlspecialchars($word),
"REPLACEMENT" => $replacement, "REPLACEMENT" => htmlspecialchars($replacement),
"U_WORD_EDIT" => append_sid("admin_words.$phpEx?mode=edit&id=$word_id"), "U_WORD_EDIT" => append_sid("admin_words.$phpEx?mode=edit&id=$word_id"),
"U_WORD_DELETE" => append_sid("admin_words.$phpEx?mode=delete&id=$word_id")) "U_WORD_DELETE" => append_sid("admin_words.$phpEx?mode=delete&id=$word_id"))

View file

@ -77,8 +77,8 @@ p,ul,td {font-size:10pt;}
<li>[Fix] Selected field on first entry by default for font size within posting_body.tpl (Bug #7124)</li> <li>[Fix] Selected field on first entry by default for font size within posting_body.tpl (Bug #7124)</li>
<li>[Fix] Adjusted maxlength parameters in admin/styles_edit_body.tpl (Bug #81)</li> <li>[Fix] Adjusted maxlength parameters in admin/styles_edit_body.tpl (Bug #81)</li>
<li>[Fix] Fixed html output in make_forum_select if no forums present (Bug #436)</li> <li>[Fix] Fixed html output in make_forum_select if no forums present (Bug #436)</li>
<li>[Fix] Fixed spelling error(s) in lang_admin.php (Bug #7172, #6978)</li> <li>[Fix] Fixed spelling error(s) in lang_admin.php (Bug #7172, #6978)</li>
<li>[Fix] Correctly display censored words in admin panel (Bug #12271)</li>
</ul> </ul>
<a name="2021"></a><h3 class="h3">l.ii. Changes since 2.0.21</h3> <a name="2021"></a><h3 class="h3">l.ii. Changes since 2.0.21</h3>