1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

Fixed Add Word

git-svn-id: file:///svn/phpbb/trunk@974 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-09-02 22:26:15 +00:00
parent 107a3162c2
commit dce8578de5
2 changed files with 6 additions and 4 deletions

View File

@ -166,7 +166,7 @@ else
$word_rows = $db->sql_fetchrowset($result);
$word_count = count($word_rows);
$s_hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '" />';
$s_hidden_fields = '<input type="hidden" name="mode" value="add" />';
$template->assign_vars(array(
"L_WORDS_TITLE" => $lang['Words_title'],
@ -175,7 +175,7 @@ else
"L_REPLACEMENT" => $lang['Replacement'],
"L_EDIT" => $lang['Edit'],
"L_DELETE" => $lang['Delete'],
"L_WORD_ADD" => $lang['Add_word_censor'],
"L_WORD_ADD" => $lang['Add_new_word'],
"L_ACTION" => $lang['Action'],
"S_WORDS_ACTION" => append_sid("admin_words.$phpEx"),

View File

@ -248,6 +248,8 @@ $lang['Start_watching_topic'] = "Watch this topic for replies";
//
$lang['Message_body'] = "Message body";
$lang['No_post_mode'] = "No post mode specified";
$lang['Post_a_new_topic'] = "Post a new topic";
$lang['Post_new_topic_in'] = "Post new topic in:"; // Followed by forum name
$lang['Post_a_reply'] = "Post a reply";
@ -848,7 +850,7 @@ $lang['days'] = 'Days';
$lang['Word_censor'] = "Word Censor";
$lang['Word'] = "Word";
$lang['Replacement'] = "Replacement";
$lang['Add_word_censor'] = "Add Word Censor";
$lang['Add_new_word'] = "Add new word to list";
$lang['Words_title'] = "Word Censors";
$lang['Words_explain'] = "From this control panel you can add, edit, and remove words that will be automatically censored on your forums. Wildcards (*) are accepted in the word field! (i.e.: *test*, test*, *test, and test are all valid)";
$lang['Must_enter_word'] = "You must enter a word and it's replacement!";