1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

Fixed: PHP warning - parse_str() expects parameter 1 to be string, array given...

This commit is contained in:
Lóna Lore
2016-02-17 16:43:32 +01:00
parent 26c2aa3e4a
commit 701fad231b

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']))
{