diff options
author | David M <davidmj@users.sourceforge.net> | 2007-05-15 13:15:40 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-05-15 13:15:40 +0000 |
commit | a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f (patch) | |
tree | 9b68eab1170bb13e6c6fe083bceb357eb04056df | |
parent | 0d7b31e884068fc6fb84b2fbb09083cb1985cea6 (diff) | |
download | forums-a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f.tar forums-a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f.tar.gz forums-a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f.tar.bz2 forums-a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f.tar.xz forums-a0a44aeee4550d3c3bfc7c5d3d62b8e3acb5a35f.zip |
#10940
git-svn-id: file:///svn/phpbb/trunk@7582 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_approve.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_front.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_header.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_logs.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_queue.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_reports.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_topic.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_body.html | 2 |
8 files changed, 9 insertions, 7 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_approve.html b/phpBB/styles/prosilver/template/mcp_approve.html index 053c74d68f..64f9f0542f 100644 --- a/phpBB/styles/prosilver/template/mcp_approve.html +++ b/phpBB/styles/prosilver/template/mcp_approve.html @@ -1,6 +1,6 @@ <!-- INCLUDE overall_header.html --> -<form name="confirm" action="{S_CONFIRM_ACTION}" method="post"> +<form id="confirm" action="{S_CONFIRM_ACTION}" method="post"> <div class="panel"> <div class="inner"><span class="corners-top"><span></span></span> diff --git a/phpBB/styles/prosilver/template/mcp_front.html b/phpBB/styles/prosilver/template/mcp_front.html index 00c045b894..9b5fb17dce 100644 --- a/phpBB/styles/prosilver/template/mcp_front.html +++ b/phpBB/styles/prosilver/template/mcp_front.html @@ -4,7 +4,7 @@ <!-- IF S_SHOW_UNAPPROVED --> - <form name="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}"> + <form id="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}"> <div class="panel"> <div class="inner"><span class="corners-top"><span></span></span> diff --git a/phpBB/styles/prosilver/template/mcp_header.html b/phpBB/styles/prosilver/template/mcp_header.html index 7c3f711cbd..9af0f4c4e6 100644 --- a/phpBB/styles/prosilver/template/mcp_header.html +++ b/phpBB/styles/prosilver/template/mcp_header.html @@ -51,7 +51,7 @@ <!-- ENDIF --> <!-- IF CONFIRM_MESSAGE --> - <form name="confirm" method="post" action="{S_CONFIRM_ACTION}"{S_FORM_ENCTYPE}> + <form id="confirm" method="post" action="{S_CONFIRM_ACTION}"{S_FORM_ENCTYPE}> <div class="content"> <h2>{L_PLEASE_CONFIRM}</h2> diff --git a/phpBB/styles/prosilver/template/mcp_logs.html b/phpBB/styles/prosilver/template/mcp_logs.html index b7a8b5dfe0..4e4e782fca 100644 --- a/phpBB/styles/prosilver/template/mcp_logs.html +++ b/phpBB/styles/prosilver/template/mcp_logs.html @@ -34,7 +34,7 @@ <td>{log.ACTION}<br /> {log.DATA} </td> - <!-- IF S_CLEAR_ALLOWED --><td width="5%" align="center"><input type="checkbox" name="mark[]" value="{log.ID}" /></td><!-- ENDIF --> + <!-- IF S_CLEAR_ALLOWED --><td style="width: 5%" align="center"><input type="checkbox" name="mark[]" value="{log.ID}" /></td><!-- ENDIF --> </tr> <!-- END log --> <!-- ELSE --> diff --git a/phpBB/styles/prosilver/template/mcp_queue.html b/phpBB/styles/prosilver/template/mcp_queue.html index 49acf2c87e..b762c393eb 100644 --- a/phpBB/styles/prosilver/template/mcp_queue.html +++ b/phpBB/styles/prosilver/template/mcp_queue.html @@ -1,6 +1,6 @@ <!-- INCLUDE mcp_header.html --> -<form name="mcp" method="post" action="{S_MCP_ACTION}"> +<form id="mcp" method="post" action="{S_MCP_ACTION}"> <fieldset class="forum-selection"> <label for="fo">{L_FORUM}: <select name="f" id="fo">{S_FORUM_OPTIONS}</select></label> diff --git a/phpBB/styles/prosilver/template/mcp_reports.html b/phpBB/styles/prosilver/template/mcp_reports.html index 1dd0b9fee0..04e64265f2 100644 --- a/phpBB/styles/prosilver/template/mcp_reports.html +++ b/phpBB/styles/prosilver/template/mcp_reports.html @@ -1,6 +1,6 @@ <!-- INCLUDE mcp_header.html --> -<form name="mcp" method="post" action="{S_MCP_ACTION}"> +<form id="mcp" method="post" action="{S_MCP_ACTION}"> <fieldset class="forum-selection"> <label for="fo">{L_FORUM}: <select name="f" id="fo">{S_FORUM_OPTIONS}</select></label> diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html index 80886b477d..a9124f4407 100644 --- a/phpBB/styles/prosilver/template/mcp_topic.html +++ b/phpBB/styles/prosilver/template/mcp_topic.html @@ -36,7 +36,7 @@ onload_functions.push('subPanels()'); </ul> </div> -<form name="mcp" method="post" action="{S_MCP_ACTION}"> +<form id="mcp" method="post" action="{S_MCP_ACTION}"> <div class="panel"> <div class="inner"><span class="corners-top"><span></span></span> diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index cf3be5cdeb..5bae03275d 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -144,12 +144,14 @@ <form method="post" id="sort-results" action="{S_MODE_ACTION}"> <!-- ENDIF --> +<!-- IF S_IN_SEARCH_POPUP and not S_SEARCH_USER --> <fieldset class="display-options"> <!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}" class="left-box left">{L_PREVIOUS}</a><!-- ENDIF --> <!-- IF NEXT_PAGE --><a href="{NEXT_PAGE}" class="right-box right">{L_NEXT}</a><!-- ENDIF --> <label for="sk">{L_SELECT_SORT_METHOD}: <select name="sk" id="sk">{S_MODE_SELECT}</select></label> <label for="sd">{L_ORDER} <select name="sd" id="sd">{S_ORDER_SELECT}</select> <input type="submit" name="sort" value="{L_SUBMIT}" class="button2" /></label> </fieldset> +<!-- ENDIF --> </form> |