From aa17a896ac03a4aa0530b9fbdf444d1e159d6ec2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20M=C3=BCller?= Date: Thu, 19 Dec 2013 00:33:29 +0100 Subject: [PATCH] fix return statement --- lib/public/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/db.php b/lib/public/db.php index 5dcb2d9bf4a..4a19d78d444 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -86,14 +86,14 @@ class DB { * Start a transaction */ public static function beginTransaction() { - return(\OC_DB::beginTransaction()); + \OC_DB::beginTransaction(); } /** * Commit the database changes done during a transaction that is in progress */ public static function commit() { - return(\OC_DB::commit()); + \OC_DB::commit(); } /** -- 2.39.5