Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 20 Nov 2022 12:57:53 +0000 (13:57 +0100)
committerRoland Häder <roland@mxchange.org>
Fri, 9 Jun 2023 19:50:00 +0000 (21:50 +0200)
- replace double-quotes with single

src/Database/Database.php

index 78a534e..9366f1b 100644 (file)
@@ -752,8 +752,8 @@ class Database
                                @file_put_contents(
                                        $this->config->get('system', 'db_log'),
                                        DateTimeFormat::utcNow() . "\t" . $duration . "\t" .
-                                       basename($backtrace[1]["file"]) . "\t" .
-                                       $backtrace[1]["line"] . "\t" . $backtrace[2]["function"] . "\t" .
+                                       basename($backtrace[1]['file']) . "\t" .
+                                       $backtrace[1]['line'] . "\t" . $backtrace[2]['function'] . "\t" .
                                        substr($this->replaceParameters($sql, $args), 0, 4000) . "\n",
                                        FILE_APPEND
                                );