Commit 76a83572 authored by Nico Schallehn's avatar Nico Schallehn

=> auf >= getauscht

parent 34c9f0e9
......@@ -118,7 +118,7 @@ class MediaDBViewerAPI{
// Kleiner oder Größer und kein Komma!
$Jahr = str_replace(">", "", $GET_arr['Jahr']);
$Jahr = str_replace("<", "", $GET_arr['Jahr']);
$Where .= ($first?"":" AND ").'year ='.((substr($GET_arr['Jahr'],0,1) == ">")?">":"").((substr($GET_arr['Jahr'],0,1) == "<")?"<":"").'"'.$Jahr.'"';
$Where .= ($first?"":" AND ").'year '.((substr($GET_arr['Jahr'],0,1) == ">")?">":"").((substr($GET_arr['Jahr'],0,1) == "<")?"<":"").'="'.$Jahr.'"';
}else if(strpos($GET_arr['Jahr'], ",")>0){
$jahrArr = explode(",", $GET_arr['Jahr']);
var_dump($jahrArr);
......
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