aboutsummaryrefslogtreecommitdiff
path: root/app/Models/DatabaseDAOSQLite.php
diff options
context:
space:
mode:
authorGravatar Luc SANCHEZ <4697568+ColonelMoutarde@users.noreply.github.com> 2020-09-01 12:50:00 +0200
committerGravatar GitHub <noreply@github.com> 2020-09-01 12:50:00 +0200
commitca965a490df8a46343c1d50b658b8c7a690906de (patch)
tree8929e655f33b2dfb4e511b400c1be3c641442bc9 /app/Models/DatabaseDAOSQLite.php
parentcc65e1a9a3a9ce38a725ac9afd2b45d6abc806b4 (diff)
Fix variable undeclared ($sql) (#3165)
* Fix variable undeclared ($sql) * Update DatabaseDAOSQLite.php modify
Diffstat (limited to 'app/Models/DatabaseDAOSQLite.php')
-rw-r--r--app/Models/DatabaseDAOSQLite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/DatabaseDAOSQLite.php b/app/Models/DatabaseDAOSQLite.php
index eaa2d37a7..f944ec043 100644
--- a/app/Models/DatabaseDAOSQLite.php
+++ b/app/Models/DatabaseDAOSQLite.php
@@ -69,7 +69,7 @@ class FreshRSS_DatabaseDAOSQLite extends FreshRSS_DatabaseDAO {
$ok = $this->pdo->exec('VACUUM') !== false;
if (!$ok) {
$info = $this->pdo->errorInfo();
- Minz_Log::warning(__METHOD__ . ' error: ' . $sql . ' : ' . json_encode($info));
+ Minz_Log::warning(__METHOD__ . ' error : ' . json_encode($info));
}
return $ok;
}