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

Fix for odd PHP behavior on $fieldType == '_NULL_'.

This commit is contained in:
Cameron
2016-04-13 16:03:37 -07:00
parent ac7c95d7f8
commit 673b98046c

View File

@@ -1222,7 +1222,8 @@ class e_db_mysql
private function _getPDOValue($type, $fieldValue)
{
if($fieldValue == '_NULL_')
if(is_string($fieldValue) && ($fieldValue == '_NULL_'))
{
$type = 'null';
}
@@ -2802,6 +2803,7 @@ class e_db_mysql
// echo "Error writing file: ".e_CACHE_DB.$tableName.'.php'.'<br />';
}
}
}
}