1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 22:57:14 +02:00

Fix for numeric form drop-downs.

This commit is contained in:
Cameron
2017-04-14 11:00:29 -07:00
parent ab890d9fe8
commit 90d533ba52
2 changed files with 8 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ function varset(&$val, $default='')
*/
function defset($str, $default='')
{
if(!is_string($str))
if(is_array($str))
{
return false;
}