Commit 8f791215 authored by Nico Schallehn's avatar Nico Schallehn

!= to IS NOT

parent bb99ac24
......@@ -69,10 +69,9 @@ class MediaDBViewerAPI{
$first = false;
}
if(isset($GET_arr['Englisch']) ){
$Where .= ($first?"":" AND ").'acodeceng '.($GET_arr['3d']?"!=":"=").'null';
$Where .= ($first?"":" AND ").'acodeceng'.($GET_arr['3d']?" IS NOT ":"=").'null';
$first = false;
}
if(isset($GET_arr['Suche'])){
$Suche = " `name` LIKE '%".$GET_arr['Suche']."%' OR `md5` LIKE '%".$GET_arr['Suche']."%' OR `comment` LIKE '%".$GET_arr['Suche']."%'";
//OR `year` = '".$GET_arr['Suche']."' OR `resolution` LIKE '%".$GET_arr['Suche']."%'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment