summaryrefslogtreecommitdiff
path: root/includes/model/LogEntries_model.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-01-14 13:32:57 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-01-14 13:32:57 +0100
commit0e8cc2f0a73085170df45c6a40e8f3df06a6af51 (patch)
treea38b1c1d7da28f4c95b201ab32d370916e749832 /includes/model/LogEntries_model.php
parentd4b36e9bad4c9d64447f053ec19a9f600888b2fe (diff)
database: integrated illuminate/database do Db class, removed unused methods
Diffstat (limited to 'includes/model/LogEntries_model.php')
-rw-r--r--includes/model/LogEntries_model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/LogEntries_model.php b/includes/model/LogEntries_model.php
index f0ee6673..b16c598c 100644
--- a/includes/model/LogEntries_model.php
+++ b/includes/model/LogEntries_model.php
@@ -58,5 +58,5 @@ function LogEntries_filter($keyword)
*/
function LogEntries_clear_all()
{
- return DB::statement('TRUNCATE `LogEntries`');
+ return DB::connection()->statement('TRUNCATE `LogEntries`');
}