1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-01-21 17:52:10 +01:00

remove fixed “oc_”-prefix.

This commit is contained in:
udera 2015-02-27 18:59:29 +01:00
parent d6443a3e51
commit 8b0011b6b5

View File

@ -491,7 +491,7 @@ class Bookmarks {
if ($dbtype === 'mysql') {
$sql .= 'from dual ';
}
$sql .= 'where not exists(select * from oc_bookmarks_tags where bookmark_id = ? and tag = ?)';
$sql .= 'where not exists(select * from `*PREFIX*bookmarks_tags` where bookmark_id = ? and tag = ?)';
$query = $db->prepareQuery($sql);
foreach ($tags as $tag) {