diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-13 15:41:57 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-13 15:41:57 +0000 |
commit | 28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa (patch) | |
tree | c45b1aab6eb8ca668c3f38fb6352889f7423e086 | |
parent | 88edd41f5d178df2986fba8881aa5b10b3c31825 (diff) | |
download | forums-28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa.tar forums-28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa.tar.gz forums-28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa.tar.bz2 forums-28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa.tar.xz forums-28fa6e80a93ddd48fac451fc9ea07d2e1b8ec8aa.zip |
Fix various missing /> in input fields
git-svn-id: file:///svn/phpbb/trunk@2129 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/modcp.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/phpBB/modcp.php b/phpBB/modcp.php index 7f133f6482..6eb0626449 100644 --- a/phpBB/modcp.php +++ b/phpBB/modcp.php @@ -351,19 +351,19 @@ switch($mode) message_die(GENERAL_MESSAGE, $lang['None_selected'], ""); } - $hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '"><input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '">'; + $hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '" /><input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '" />'; if( isset($HTTP_POST_VARS['topic_id_list']) ) { $topics = $HTTP_POST_VARS['topic_id_list']; for($i = 0; $i < count($topics); $i++) { - $hidden_fields .= '<input type="hidden" name="topic_id_list[]" value="' . $topics[$i] . '">'; + $hidden_fields .= '<input type="hidden" name="topic_id_list[]" value="' . $topics[$i] . '" />'; } } else { - $hidden_fields .= '<input type="hidden" name="' . POST_TOPIC_URL . '" value="' . $topic_id . '">'; + $hidden_fields .= '<input type="hidden" name="' . POST_TOPIC_URL . '" value="' . $topic_id . '" />'; } // @@ -496,7 +496,7 @@ switch($mode) message_die(GENERAL_MESSAGE, $lang['None_selected']); } - $hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '"><input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '">'; + $hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '" /><input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '" />'; if( isset($HTTP_POST_VARS['topic_id_list']) ) { @@ -504,12 +504,12 @@ switch($mode) for($i = 0; $i < count($topics); $i++) { - $hidden_fields .= '<input type="hidden" name="topic_id_list[]" value="' . intval($topics[$i]) . '">'; + $hidden_fields .= '<input type="hidden" name="topic_id_list[]" value="' . intval($topics[$i]) . '" />'; } } else { - $hidden_fields .= '<input type="hidden" name="' . POST_TOPIC_URL . '" value="' . $topic_id . '">'; + $hidden_fields .= '<input type="hidden" name="' . POST_TOPIC_URL . '" value="' . $topic_id . '" / } // @@ -721,7 +721,7 @@ switch($mode) message_die(GENERAL_ERROR, "Could not get topic/post information", "", __LINE__, __FILE__, $sql); } - $s_hidden_fields = '<input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '"><input type="hidden" name="mode" value="split">'; + $s_hidden_fields = '<input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '" /><input type="hidden" name="mode" value="split" />'; if( ( $total_posts = $db->sql_numrows($result) ) > 0 ) { |