66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
" AND tx.tagtype!=0 %s "
TAGVIEW_DEFAULT_FILTER
" ORDER BY tx.mtime DESC %s",
zLikeClause, zLimit
);
db_generic_query_view(zSql, 1);
free(zSql);
if( strlen(zLikeClause) ) free(zLikeClause);
if( strlen(zLimit) ) free(zLimit);
}
/*
** A small search form which forwards to ?like=SEARCH_STRING
*/
static void tagview_page_search_miniform(void){
char const * like = P("like");
|
|
|
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
" AND tx.tagtype!=0 %s "
TAGVIEW_DEFAULT_FILTER
" ORDER BY tx.mtime DESC %s",
zLikeClause, zLimit
);
db_generic_query_view(zSql, 1);
free(zSql);
if( zLikeClause[0] ) free(zLikeClause);
if( zLimit[0] ) free(zLimit);
}
/*
** A small search form which forwards to ?like=SEARCH_STRING
*/
static void tagview_page_search_miniform(void){
char const * like = P("like");
|