1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-15 19:14:09 +02:00

Minor fixes.

This commit is contained in:
CaMer0n
2012-08-15 09:26:00 +00:00
parent 52867719d4
commit 02e7205651
5 changed files with 87 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ class signup_shortcodes extends e_shortcode
else
{
return "
<form method='post' action='".e_SELF."?stage1' >\n
<form method='post' action='".e_SELF."?stage1' autocomplete='off'>\n
<div><br />
<input type='radio' name='coppa' value='0' checked='checked' /> ".LAN_NO."
<input type='radio' name='coppa' value='1' /> ".LAN_YES."<br />
@@ -109,6 +109,7 @@ class signup_shortcodes extends e_shortcode
function sc_signup_form_open()
{
global $rs;
return "<form action='".e_SELF."' method='post' id='signupform' autocomplete='off'><div>".e107::getForm()->token()."</div>";
return $rs->form_open("post", e_SELF, "signupform");
}