BUG 9180 Error unserializing APP_DATA with null value
Error ----- Error unserializing APP_DATA with null value Solution -------- Verify if the APP_DATA contains serialized NULL before trying to unserialize The APP_DATA with NULL serialized = "N;" is generated with the function PMFNewCaseImpersonate
This commit is contained in:
@@ -1277,7 +1277,7 @@ class AppSolr
|
||||
}
|
||||
|
||||
// get the serialized fields
|
||||
if (! empty ($documentData ['APP_DATA'])) {
|
||||
if (! empty ($documentData ['APP_DATA']) && $documentData ['APP_DATA'] != "N;" ) {
|
||||
|
||||
$UnSerializedCaseData = unserialize ($documentData ['APP_DATA']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user