Can select not defined language
This commit is contained in:
parent
40d30f9a60
commit
d8ee049b4c
@ -333,10 +333,17 @@ class WebsitePage extends CommonObject
|
|||||||
$sqlwhere[] = $key.'='.$value;
|
$sqlwhere[] = $key.'='.$value;
|
||||||
} elseif ($key == 'lang' || $key == 't.lang') {
|
} elseif ($key == 'lang' || $key == 't.lang') {
|
||||||
$listoflang = array();
|
$listoflang = array();
|
||||||
|
$foundnull = 0;
|
||||||
foreach(explode(',', $value) as $tmpvalue) {
|
foreach(explode(',', $value) as $tmpvalue) {
|
||||||
|
if ($tmpvalue == 'null') {
|
||||||
|
$foundnull++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$listoflang[] = "'".$this->db->escape(substr(str_replace("'", '', $tmpvalue), 0, 2))."'";
|
$listoflang[] = "'".$this->db->escape(substr(str_replace("'", '', $tmpvalue), 0, 2))."'";
|
||||||
}
|
}
|
||||||
$sqlwhere[] = $key." IN (".join(',', $listoflang).")";
|
$stringtouse = $key." IN (".join(',', $listoflang).")";
|
||||||
|
if ($foundnull) $stringtouse = '('.$stringtouse.' OR '.$key.' IS NULL)';
|
||||||
|
$sqlwhere[] = $stringtouse;
|
||||||
} else {
|
} else {
|
||||||
$sqlwhere[] = $key.' LIKE \'%'.$this->db->escape($value).'%\'';
|
$sqlwhere[] = $key.' LIKE \'%'.$this->db->escape($value).'%\'';
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user