remove misleading comment from code

This commit is contained in:
FrancescoUK
2016-03-08 19:50:46 +00:00
parent d7df291b9a
commit 76639f6da1
2 changed files with 0 additions and 3 deletions

View File

@@ -38,7 +38,6 @@ class Items extends Secure_area implements iData_controller
$data['manage_table'] = get_items_manage_table( $this->Item->get_all($stock_location, $lines_per_page, $limit_from), $this );
$this->load->view('items/manage', $data);
}
function find_item_info()

View File

@@ -127,8 +127,6 @@ class Sales extends Secure_area
$sale_rows = get_sales_manage_table_data_rows($sales, $this);
$payment_summary = get_sales_manage_payments_summary($payments, $sales, $this);
// do not move this line to be after the json_encode otherwise the search function won't work!!
echo json_encode(array('total_rows' => $total_rows, 'rows' => $sale_rows, 'pagination' => $links, 'payment_summary' => $payment_summary));
}