1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-12-02 06:24:11 +01:00

make tag filter compatible with sqlite

This commit is contained in:
Arthur Schiwon 2011-08-23 11:43:27 +02:00
parent 2c9d4bb403
commit 508e56fa9f

View File

@ -36,11 +36,16 @@ if( !OC_User::isLoggedIn()){
}
$params=array(OC_User::getUser());
$CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" );
//Filter for tag?
$filterTag = isset($_GET["tag"]) ? urldecode($_GET["tag"]) : false;
if($filterTag){
$sqlFilterTag = "HAVING INSTR (tags, ?) > 0";
if( $CONFIG_DBTYPE == 'sqlite' or $CONFIG_DBTYPE == 'sqlite3' ){
$sqlFilterTag = "HAVING tags LIKE '%' || ? || '%'";
} else {
$sqlFilterTag = "HAVING INSTR (tags, ?) > 0";
}
$params[] = $filterTag;
} else {
$sqlFilterTag = '';
@ -49,7 +54,6 @@ if($filterTag){
$offset = isset($_GET["page"]) ? intval($_GET["page"]) * 10 : 0;
$params[] = $offset;
$CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" );
if( $CONFIG_DBTYPE == 'sqlite' or $CONFIG_DBTYPE == 'sqlite3' ){
$_gc_separator = ", ' '";
} else {