summaryrefslogtreecommitdiffstats
path: root/lib/private/db/adapter.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-11-14 15:48:55 +0100
committerArthur Schiwon <blizzz@owncloud.com>2014-11-14 15:48:55 +0100
commit7ed678b04db6dde338f90fbd00d828acee4c9c99 (patch)
treeb59377fe61f19eb8e7a8cc2994357c98458eaabd /lib/private/db/adapter.php
parent0f3c5d8541dcb41eebd00f22864a0a646c11124f (diff)
downloadnextcloud-server-7ed678b04db6dde338f90fbd00d828acee4c9c99.tar.gz
nextcloud-server-7ed678b04db6dde338f90fbd00d828acee4c9c99.zip
eliminate OC_Template::printErrorPage in database classes, fixes #12182
Diffstat (limited to 'lib/private/db/adapter.php')
-rw-r--r--lib/private/db/adapter.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/db/adapter.php b/lib/private/db/adapter.php
index 972008776f6..93d69cf4183 100644
--- a/lib/private/db/adapter.php
+++ b/lib/private/db/adapter.php
@@ -43,6 +43,7 @@ class Adapter {
* insert the @input values when they do not exist yet
* @param string $table name
* @param array $input key->value pair, key has to be sanitized properly
+ * @throws \OC\HintException
* @return int count of inserted rows
*/
public function insertIfNotExist($table, $input) {
@@ -71,7 +72,7 @@ class Adapter {
$entry .= 'Offending command was: ' . $query.'<br />';
\OC_Log::write('core', $entry, \OC_Log::FATAL);
error_log('DB error: ' . $entry);
- \OC_Template::printErrorPage( $entry );
+ throw new \OC\HintException($entry);
}
}
}