Merge branch 'ent-4936-Comillas-dobles-en-comentarios-de-eventos-no-funcionan' into 'develop'
Ent 4936 comillas dobles en comentarios de eventos no funcionan See merge request artica/pandorafms!2869
This commit is contained in:
commit
7e8f22b1de
|
@ -4580,7 +4580,7 @@ function events_page_comments($event, $ajax=false)
|
|||
continue;
|
||||
}
|
||||
|
||||
$comments_array[] = json_decode(io_safe_output($comm), true);
|
||||
$comments_array[] = io_safe_output(json_decode($comm, true));
|
||||
}
|
||||
} else {
|
||||
// If comments are not stored in json, the format is old.
|
||||
|
|
|
@ -5744,7 +5744,7 @@ function ui_print_comments($comments)
|
|||
continue;
|
||||
}
|
||||
|
||||
$comments_array[] = json_decode(io_safe_output($comm), true);
|
||||
$comments_array[] = io_safe_output(json_decode($comm, true));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue