1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-22 16:22:58 +02:00

[ticket/12613] Removed form in order to prevent nested forms

PHPBB3-12613
This commit is contained in:
PayBas
2014-05-30 13:49:30 +02:00
parent f2c7890c64
commit 9808b55258
2 changed files with 19 additions and 19 deletions

View File

@@ -6,16 +6,9 @@
<div class="pointer"><div class="pointer-inner"></div></div>
<ul class="dropdown-contents">
<li>{L_JUMP_TO_PAGE_FORM}</li>
<li>
<form class="page-jump-form" method="get">
<fieldset>
<input type="text" name="page-number" maxlength="6" title="{L_SEARCH_KEYWORDS}" class="inputbox tiny" value="" />
<input class="button2" value="{L_GO}" type="submit" />
<input type="hidden" value="{PER_PAGE}" name="per-page">
<input type="hidden" value="{START_NAME}" name="start-name">
<input type="hidden" value="{BASE_URL|e('html_attr')}" name="base-url">
</fieldset>
</form>
<li class="page-jump-form">
<input type="text" name="page-number" maxlength="6" title="{L_SEARCH_KEYWORDS}" class="inputbox tiny" value="" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" />
<input class="button2" value="{L_GO}" type="button" />
</li>
</ul>
</div>