fix backtrace
parent
fdaee75310
commit
b1bcfe8a9b
|
@ -92,6 +92,7 @@ class ZM_Object {
|
||||||
if ( is_integer($options['limit']) or ctype_digit($options['limit']) ) {
|
if ( is_integer($options['limit']) or ctype_digit($options['limit']) ) {
|
||||||
$sql .= ' LIMIT ' . $options['limit'];
|
$sql .= ' LIMIT ' . $options['limit'];
|
||||||
} else {
|
} else {
|
||||||
|
$backTrace = debug_backtrace();
|
||||||
Error('Invalid value for limit('.$options['limit'].') passed to '.get_class()."::find from ".print_r($backTrace,true));
|
Error('Invalid value for limit('.$options['limit'].') passed to '.get_class()."::find from ".print_r($backTrace,true));
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue