Revert "FIX : travis feedback"

This reverts commit 1a651f089d.
This commit is contained in:
Gauthier PC portable 024 2021-10-05 16:45:18 +02:00
parent 1a651f089d
commit 298f337f36
7 changed files with 7 additions and 7 deletions

View File

@ -422,7 +422,7 @@ class Evaluation extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {

View File

@ -395,7 +395,7 @@ class Evaluationline extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {

View File

@ -396,7 +396,7 @@ class Job extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {

View File

@ -407,7 +407,7 @@ class Position extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND (' . implode(' ' . $filtermode . ' ', $sqlwhere) . ')';
}
if (!empty($sortfield)) {

View File

@ -442,7 +442,7 @@ class Skill extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {

View File

@ -388,7 +388,7 @@ class Skilldet extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {

View File

@ -427,7 +427,7 @@ class SkillRank extends CommonObject
}
}
if (count($sqlwhere) > 0) {
$sql .= ' AND ('.$this->db->escape(implode(' '.$filtermode.' ', $sqlwhere)).')';
$sql .= ' AND ('.implode(' '.$filtermode.' ', $sqlwhere).')';
}
if (!empty($sortfield)) {