Skip to content

Commit

Permalink
Fixed issue #17513: System information modal duplicates database serv…
Browse files Browse the repository at this point in the history
…er info
  • Loading branch information
c-schmitz committed Aug 16, 2021
1 parent 0364453 commit 447bba7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/super/footer.php
Expand Up @@ -41,9 +41,9 @@
}

/* Fix array to string , see #13352 */
foreach($systemInfos as &$systemInfo) {
if(is_array($systemInfo)) {
$systemInfo = json_encode($systemInfo, JSON_PRETTY_PRINT);
foreach ($systemInfos as $key => $systemInfo) {
if (is_array($systemInfo)) {
$systemInfos[$key] = json_encode($systemInfo, JSON_PRETTY_PRINT);
}
}
?>
Expand Down

0 comments on commit 447bba7

Please sign in to comment.