Index: trunk/extensions/Collection/Collection.body.php |
— | — | @@ -859,7 +859,7 @@ |
860 | 860 | $html = <<<EOS |
861 | 861 | <h2><span class="mw-headline">$downloadTitle</span></h2> |
862 | 862 | <p>$downloadText</p> |
863 | | -<form id="downloadForm" action="$url" method="POST"> |
| 863 | +<form id="downloadForm" action="$url" method="post"> |
864 | 864 | <input id="downloadTitle" name="downloadTitle" type="hidden"></input> |
865 | 865 | <input id="downloadSubtitle" name="downloadSubtitle" type="hidden"></input> |
866 | 866 | EOS |
— | — | @@ -920,7 +920,7 @@ |
921 | 921 | |
922 | 922 | $url = htmlspecialchars( SkinTemplate::makeSpecialUrlSubpage( 'Collection', 'save_collection/' ) ); |
923 | 923 | $html .= <<<EOS |
924 | | -<form id="saveForm" action="$url" method="POST"> |
| 924 | +<form id="saveForm" action="$url" method="post"> |
925 | 925 | <input id="personalCollType" type="radio" name="colltype" value="personal" checked="checked"></input> |
926 | 926 | <label for="personalCollType">$personalColl</label> |
927 | 927 | <label for="personalCollTitle">$personalTitle</label> |
— | — | @@ -953,7 +953,7 @@ |
954 | 954 | $escapedTitle = htmlspecialchars( $title->getPrefixedText() ); |
955 | 955 | $url = htmlspecialchars( SkinTemplate::makeSpecialUrlSubpage( 'Collection', 'save_collection/' ) ); |
956 | 956 | $wgOut->addHTML( <<<EOS |
957 | | -<form action="$url" method="POST"> |
| 957 | +<form action="$url" method="post"> |
958 | 958 | <input name="overwrite" type="submit" value="$yes"></input> |
959 | 959 | <input name="abort" type="submit" value="$no"></input> |
960 | 960 | <input name="colltitle" type="hidden" value="$escapedTitle"></input> |
— | — | @@ -974,7 +974,7 @@ |
975 | 975 | $escapedTitle = htmlspecialchars( $title->getPrefixedText() ); |
976 | 976 | $url = htmlspecialchars( SkinTemplate::makeSpecialUrlSubpage( 'Collection', 'load_collection/' ) ); |
977 | 977 | $wgOut->addHTML( <<<EOS |
978 | | -<form action="$url" method="POST"> |
| 978 | +<form action="$url" method="post"> |
979 | 979 | <input name="overwrite" type="submit" value="$overwrite"></input> |
980 | 980 | <input name="append" type="submit" value="$append"></input> |
981 | 981 | <input name="cancel" type="submit" value="$cancel"></input> |
— | — | @@ -1017,13 +1017,13 @@ |
1018 | 1018 | $orderLabel = wfMsgHtml( 'coll-order_from_pp', $partnerName ); |
1019 | 1019 | $aboutLabel = wfMsgHtml( 'coll-about_pp', $partnerName ); |
1020 | 1020 | $html .= <<<EOS |
| 1021 | +<form action="$formurl" method="get"> |
1021 | 1022 | <p> |
1022 | | - <form action="$formurl" method="GET"> |
1023 | 1023 | <input type="hidden" name="partner" value="$encPartner"/> |
1024 | 1024 | <input type="submit" value="$orderLabel"/> |
1025 | 1025 | <a href="$url" target="_blank">$aboutLabel <img src="$logoURL" alt="$partnerName"/></a> |
| 1026 | +</p> |
1026 | 1027 | </form> |
1027 | | -</p> |
1028 | 1028 | EOS |
1029 | 1029 | ; |
1030 | 1030 | } |
— | — | @@ -1363,3 +1363,4 @@ |
1364 | 1364 | return true; |
1365 | 1365 | } |
1366 | 1366 | } |
| 1367 | + |
\ No newline at end of file |