mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-11 09:09:28 +00:00
Fixed typo in application/libraries/FilterCmptLib.php, renamed __getDatasetQueryCondition to _getDatasetQueryCondition
This commit is contained in:
@@ -819,7 +819,7 @@ class FilterCmptLib
|
||||
* Generates a condition for a SQL where clause using the given applied filter definition.
|
||||
* By default an empty string is returned.
|
||||
*/
|
||||
private function __getDatasetQueryCondition($filterDefinition)
|
||||
private function _getDatasetQueryCondition($filterDefinition)
|
||||
{
|
||||
$condition = ''; // starts building the condition
|
||||
|
||||
@@ -1147,7 +1147,7 @@ class FilterCmptLib
|
||||
if (!isEmptyString($filterDefinition->name))
|
||||
{
|
||||
// Build the query conditions
|
||||
$datasetQueryCondition = $this->__getDatasetQueryCondition($filterDefinition);
|
||||
$datasetQueryCondition = $this->_getDatasetQueryCondition($filterDefinition);
|
||||
|
||||
// If the built condition is valid then add it to the query clause
|
||||
if (!isEmptyString($datasetQueryCondition))
|
||||
|
||||
Reference in New Issue
Block a user