Subversion Repositories DevTools

Rev

Rev 6579 | Rev 6879 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6579 Rev 6594
Line 110... Line 110...
110
    sortString = " ORDER BY " & sortString
110
    sortString = " ORDER BY " & sortString
111
End If
111
End If
112
 
112
 
113
' Filter (search )
113
' Filter (search )
114
Dim searchString
114
Dim searchString
115
If Request.QueryString("sSearch") <> "" Then
115
If Request.QueryString("search[value]") <> "" Then
116
    searchString = " AND upper(p.PKG_NAME) LIKE upper('%" & Request.QueryString("sSearch") & "%')" 
116
    searchString = " AND upper(p.PKG_NAME) LIKE upper('%" & Request.QueryString("search[value]") & "%')" 
117
End If
117
End If
118
 
118
 
119
Dim whereString
119
Dim whereString
120
If parRtagId <> "" Then
120
If parRtagId <> "" Then
121
    whereString = " AND bi.rtag_id = " &  parRtagId
121
    whereString = " AND bi.rtag_id = " &  parRtagId