Commit 345a8bca authored by Nico Schallehn's avatar Nico Schallehn

checkedt is NULL

parent 9cbbe764
......@@ -71,7 +71,7 @@ class MediaDBViewerAPI{
$first = false;
}
if(isset($GET_arr['acodeceng']) ){
$Where .= ($first?"":" AND ").'acodeceng = "'.$GET_arr['acodeceng'].'"';
$Where .= ($first?"":" AND ").'acodeceng = "'.$GET_arr['acodecengx'].'"';
$first = false;
}
if(isset($GET_arr['vcodec']) ){
......@@ -95,7 +95,14 @@ class MediaDBViewerAPI{
$first = false;
}
if(isset($GET_arr['checked']) ){
$Where .= ($first?"":" AND ").'checked = "'.$GET_arr['checked'].'"';
if($GET_arr['checked'] == "NULL"){
$Where .= ($first?"":" AND ").'checked IS NULL';
}
else{
$Where .= ($first?"":" AND ").'checked = "'.$GET_arr['checked'].'"';
}
$first = false;
}
if(isset($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