Skip to content
Snippets Groups Projects
Commit c39578ad authored by Carsten  Rose's avatar Carsten Rose
Browse files

Bug #5925 / Delete subrecord element: row remain visible

delete.php: it seems that assign an array element to a string variable does not convert the string to an array. CR thought this was the case in the past (maybe a change in PHP7.2)
parent c5ad93cc
No related branches found
No related tags found
No related merge requests found
......@@ -79,13 +79,14 @@ try {
$answer = $qfq->delete();
// in case everything is fine, an empty string is returned. Else an Array.
$flagSuccess = ($answer == '');
$flagSuccess = ($answer === '');
$targetUrl = Store::getVar(SIP_TARGET_URL, STORE_SIP);
$modeAnswer = Store::getVar(SIP_MODE_ANSWER, STORE_SIP);
switch ($modeAnswer) {
case MODE_JSON:
$answer = array();
if ($flagSuccess) {
$answer[API_MESSAGE] = 'Deleted';
$answer[API_REDIRECT] = API_ANSWER_REDIRECT_CLIENT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment