FIX : travis
This commit is contained in:
parent
298f337f36
commit
ea13b043ee
@ -422,7 +422,7 @@ class Evaluation extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -395,7 +395,7 @@ class Evaluationline extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -396,7 +396,7 @@ class Job extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -407,7 +407,7 @@ class Position extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND (' . implode(' ' . $filtermode . ' ', $sqlwhere) . ')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -442,7 +442,7 @@ class Skill extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -388,7 +388,7 @@ class Skilldet extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
@ -427,7 +427,7 @@ class SkillRank extends CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count($sqlwhere) > 0) {
|
if (count($sqlwhere) > 0) {
|
||||||
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
|
$sql .= " AND (".implode(" ".$filtermode." ", $sqlwhere).")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sortfield)) {
|
if (!empty($sortfield)) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user