1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 11:20:25 +02:00

Minor syntax clean-up in form open method

This commit is contained in:
Tijn Kuyper
2017-01-02 13:30:03 +01:00
committed by GitHub
parent 825a4b0cee
commit 31d929ec98

View File

@@ -8,9 +8,6 @@
*
* Form Handler
*
* $URL$
* $Id$
*
*/
if (!defined('e107_INIT')) { exit; }
@@ -142,7 +139,7 @@ class e_form
else
{
$target = str_replace("&", "&", $target);
$text = "\n<form {$class} action='{$target}' id='".$this->name2id($name)."' method = '{$method}'{$autoComplete}>\n";
$text = "\n<form {$class} action='{$target}' id='".$this->name2id($name)."' method='{$method}'{$autoComplete}>\n";
}
return $text;
}