mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-26 01:53:16 -04:00
Fix PHP5.4 support error in Items.php (#452)
This commit is contained in:
@@ -109,7 +109,7 @@ class Items extends Secure_area implements iData_controller
|
||||
$suggestions = $this->Item->get_search_suggestions($this->input->post_get('term'),
|
||||
array(
|
||||
'search_custom' => $this->input->post('search_custom'),
|
||||
'is_deleted' => !empty($this->input->post('is_deleted'))
|
||||
'is_deleted' => $this->input->post('is_deleted') != null
|
||||
),
|
||||
FALSE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user