Correcion de limit en cases list
This commit is contained in:
@@ -61,7 +61,9 @@ class Cases
|
|||||||
if ($start != 0) {
|
if ($start != 0) {
|
||||||
$start--;
|
$start--;
|
||||||
}
|
}
|
||||||
if ((abs((int)$limit)) == 0) {
|
$limit = (int)$limit;
|
||||||
|
$limit = abs($limit);
|
||||||
|
if ($limit == 0) {
|
||||||
G::LoadClass("configuration");
|
G::LoadClass("configuration");
|
||||||
$conf = new \Configurations();
|
$conf = new \Configurations();
|
||||||
$generalConfCasesList = $conf->getConfiguration('ENVIRONMENT_SETTINGS', '');
|
$generalConfCasesList = $conf->getConfiguration('ENVIRONMENT_SETTINGS', '');
|
||||||
|
|||||||
Reference in New Issue
Block a user