1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-13 09:01:59 +02:00

Merge pull request #1364 from lonalore/master

Fixed: PHP warning - parse_str() expects parameter 1 to be string, ar…
This commit is contained in:
Cameron 2016-02-17 11:21:30 -08:00
commit 22cd9fad00

View File

@ -106,8 +106,11 @@ class e_form
$class = "";
$autoComplete = "";
parse_str($options,$options);
if(is_string($options))
{
parse_str($options, $options);
}
if(vartrue($options['class']))
{