attach_list_files bugfix
This commit is contained in:
parent
bccf371aa9
commit
b3963456c0
@ -124,7 +124,13 @@
|
||||
$start = ((array_key_exists('start',$_REQUEST)) ? intval($_REQUEST['start']) : 0);
|
||||
$records = ((array_key_exists('records',$_REQUEST)) ? intval($_REQUEST['records']) : 0);
|
||||
|
||||
json_return_and_die(attach_list_files(api_user(),get_observer_hash(),$hash,$filename,$filetype,'created asc',$start,$records));
|
||||
$x = attach_list_files(api_user(),get_observer_hash(),$hash,$filename,$filetype,'created asc',$start,$records);
|
||||
if($start || $records) {
|
||||
$x['start'] = $start;
|
||||
$x['records'] = count($x['results']);
|
||||
}
|
||||
|
||||
json_return_and_die($x);
|
||||
}
|
||||
|
||||
|
||||
|
@ -203,7 +203,7 @@ function attach_list_files($channel_id, $observer, $hash = '', $filename = '', $
|
||||
$sql_extra .= protect_sprintf(" and filetype like '%" . dbesc($filetype) . "%' ");
|
||||
|
||||
if($entries)
|
||||
$limit = " limit " . intval($start) . ", " . intval(entries) . " ";
|
||||
$limit = " limit " . intval($start) . ", " . intval($entries) . " ";
|
||||
|
||||
// Retrieve all columns except 'data'
|
||||
|
||||
|
Reference in New Issue
Block a user