forked from joomla/Component-Builder
Fixed gh-117 to allow custom sql strings to be addedas a value key.
This commit is contained in:
parent
8ccb13f3e0
commit
5d3e93c560
@ -1076,7 +1076,7 @@ class Get
|
|||||||
/**
|
/**
|
||||||
* To limit the SQL Demo date build in the views
|
* To limit the SQL Demo date build in the views
|
||||||
*
|
*
|
||||||
* @param array $settings Teaking array.
|
* @param array $settings Tweaking array.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*
|
*
|
||||||
|
@ -1892,6 +1892,10 @@ class Interpretation extends Fields
|
|||||||
$value = " ".$whe['value_key']."');";
|
$value = " ".$whe['value_key']."');";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
elseif (ComponentbuilderHelper::checkString($whe['value_key']))
|
||||||
|
{
|
||||||
|
$value = " ".$whe['value_key']."');";
|
||||||
|
}
|
||||||
// only load if there is a value
|
// only load if there is a value
|
||||||
if (ComponentbuilderHelper::checkString($value))
|
if (ComponentbuilderHelper::checkString($value))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user