From 5be0feafe9c0826b1e30978dbc5baaa3a150fd4f Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Tue, 5 Jul 2016 20:24:52 +0100 Subject: [PATCH] Inverted Sale edit form Delete and Submit buttons --- application/helpers/table_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/table_helper.php b/application/helpers/table_helper.php index 41a43c2b8..0216400b6 100644 --- a/application/helpers/table_helper.php +++ b/application/helpers/table_helper.php @@ -77,7 +77,7 @@ function get_sale_data_row($sale, $controller) array('title'=>$CI->lang->line('sales_show_receipt')) ); $row['edit'] = anchor($controller_name."/edit/$sale->sale_id", '', - array('class'=>"modal-dlg print_hide", 'data-btn-submit' => $CI->lang->line('common_submit'), 'data-btn-delete' => $CI->lang->line('common_delete'), 'title' => $CI->lang->line($controller_name.'_update')) + array('class'=>"modal-dlg print_hide", 'data-btn-delete' => $CI->lang->line('common_delete'), 'data-btn-submit' => $CI->lang->line('common_submit'), 'title' => $CI->lang->line($controller_name.'_update')) ); return $row;