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:
@@ -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 />';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user