Passed
Push — v3.0 ( 0e340d...cd1398 )
by Samir
19s
created
web_interface/astpp/application/controllers/newmail.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,23 +29,23 @@
 block discarded – undo
29 29
 		parent::__construct();
30 30
 	}
31 31
 	
32
-	function index(){
32
+	function index() {
33 33
 		$data['account_info'] = $this->session->userdata['accountinfo'];
34 34
 		$data['username'] = $this->session->userdata('user_name');
35 35
 		$data['page_title'] = "Test Mail";
36
-		$this->load->view('view_newmail',$data);
36
+		$this->load->view('view_newmail', $data);
37 37
 	}
38
-	function customer_mail_result($flag=FALSE){
38
+	function customer_mail_result($flag = FALSE) {
39 39
 	$account_info = $this->session->userdata['accountinfo'];
40 40
         $post_array = $this->input->post();
41
-	$post_array['accountid']=$account_info['id'];
42
-	$post_array['history_id']=0;
43
-	$post_array['email']=$post_array['to'];
41
+	$post_array['accountid'] = $account_info['id'];
42
+	$post_array['history_id'] = 0;
43
+	$post_array['email'] = $post_array['to'];
44 44
 	unset($post_array['to']);
45
-	$this->email_lib->send_email($post_array,$post_array,'','',0,0);
45
+	$this->email_lib->send_email($post_array, $post_array, '', '', 0, 0);
46 46
 		$this->thanks();
47 47
 	}
48
-	function thanks(){
48
+	function thanks() {
49 49
             $this->load->view('view_mail_response');
50 50
 	}	
51 51
 
Please login to merge, or discard this patch.
web_interface/astpp/application/controllers/lowbalance.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,9 @@
 block discarded – undo
25 25
     function __construct()
26 26
     {
27 27
 	parent::__construct();
28
-	if(!defined( 'CRON' ) )  
29
-	  exit();
28
+	if(!defined( 'CRON' ) ) {
29
+		  exit();
30
+	}
30 31
         $this->load->model("db_model");
31 32
         $this->load->library("astpp/common");
32 33
     }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,19 +25,19 @@
 block discarded – undo
25 25
 	function __construct()
26 26
 	{
27 27
 	parent::__construct();
28
-	if(!defined( 'CRON' ) )  
28
+	if ( ! defined('CRON'))  
29 29
 	  exit();
30 30
 		$this->load->model("db_model");
31 31
 		$this->load->library("astpp/common");
32 32
 	}
33
-	function low_balance(){
34
-		$where = array("posttoexternal"=>0,"notify_flag"=>0,"deleted" => "0","status"=>"0");
33
+	function low_balance() {
34
+		$where = array("posttoexternal"=>0, "notify_flag"=>0, "deleted" => "0", "status"=>"0");
35 35
 		$query = $this->db_model->getSelect("*", "accounts", $where);
36
-		if($query->num_rows >0){
36
+		if ($query->num_rows > 0) {
37 37
 			$account_data = $query->result_array();
38
-			foreach($account_data as $data_key =>$accountinfo){
39
-				if(($accountinfo["balance"]) <= $accountinfo["notify_credit_limit"]){
40
-				  $this->common->mail_to_users("email_low_balance",$accountinfo);   
38
+			foreach ($account_data as $data_key =>$accountinfo) {
39
+				if (($accountinfo["balance"]) <= $accountinfo["notify_credit_limit"]) {
40
+				  $this->common->mail_to_users("email_low_balance", $accountinfo);   
41 41
 				}
42 42
 			}
43 43
 		}
Please login to merge, or discard this patch.
web_interface/astpp/application/libraries/global_locale.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,19 +21,19 @@
 block discarded – undo
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23 23
 
24
-if (!defined('BASEPATH'))
24
+if ( ! defined('BASEPATH'))
25 25
     exit('No direct script access allowed');
26 26
 
27 27
 /**
28 28
  * Dynamically build forms for display
29 29
  */
30
-class Global_locale{
30
+class Global_locale {
31 31
 
32 32
     function __construct($library_name = '') {
33 33
 
34 34
         $this->CI = & get_instance();
35 35
 	header("Expires: Tue, 01 Jan 2000 00:00:00 GMT");
36
-	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
36
+	header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
37 37
 	header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
38 38
 	header("Cache-Control: post-check=0, pre-check=0", false);
39 39
 	header("Pragma: no-cache");
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@
 block discarded – undo
20 20
 # You should have received a copy of the GNU Affero General Public License
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23
-if (!defined('BASEPATH'))
23
+if (!defined('BASEPATH')) {
24 24
     exit('No direct script access allowed');
25
+}
25 26
 
26 27
 class Refill_coupon_form {
27 28
     function __construct($library_name = '') {
Please login to merge, or discard this patch.
web_interface/astpp/application/libraries/locale_menu.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23 23
 
24
-if (!defined('BASEPATH'))
24
+if ( ! defined('BASEPATH'))
25 25
     exit('No direct script access allowed');
26 26
 
27 27
 /**
28 28
  * Dynamically build forms for display
29 29
  */
30
-class locale_Menu{
30
+class locale_Menu {
31 31
 
32 32
     function __construct($library_name = '') {
33 33
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $this->CI->load->model('db_model');
36 36
         $this->CI->load->library('email');
37 37
         $this->CI->load->library('session');
38
-	$current_locale=$this->CI->session->userdata('user_language');
38
+	$current_locale = $this->CI->session->userdata('user_language');
39 39
 	putenv("LC_ALL=$current_locale");
40 40
 	setlocale(LC_ALL, $current_locale); 
41 41
 	bindtextdomain(WEBSITE_DOMAIN, FCPATH.'/application/modules/dashboard/language');
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@
 block discarded – undo
20 20
 # You should have received a copy of the GNU Affero General Public License
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23
-if (!defined('BASEPATH'))
23
+if (!defined('BASEPATH')) {
24 24
     exit('No direct script access allowed');
25
+}
25 26
 
26 27
 class Refill_coupon_form {
27 28
     function __construct($library_name = '') {
Please login to merge, or discard this patch.
web_interface/astpp/application/libraries/freeswitch_lib.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,16 +22,16 @@  discard block
 block discarded – undo
22 22
 ###############################################################################
23 23
 
24 24
 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
25
-class freeswitch_lib{
25
+class freeswitch_lib {
26 26
 	
27
-	function event_socket_create($host='127.0.0.1', $port='8021', $password='ClueCon') {
27
+	function event_socket_create($host = '127.0.0.1', $port = '8021', $password = 'ClueCon') {
28 28
 	    $fp = @fsockopen($host, $port, $errno, $errdesc);
29 29
 // 	    or die("Connection to $host failed");
30 30
 // 	    socket_set_blocking($fp,false);
31 31
 	    
32 32
 	    if ($fp) {
33
-		socket_set_blocking($fp,false);
34
-		while (!feof($fp)) {
33
+		socket_set_blocking($fp, false);
34
+		while ( ! feof($fp)) {
35 35
 		    $buffer = fgets($fp, 1024);
36 36
 		    usleep(100); //allow time for reponse
37 37
 		    if (trim($buffer) == "Content-Type: auth/request") {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 		$response = "";
55 55
 		$i = 0;
56 56
 		$contentlength = 0;
57
-		while (!feof($fp)) {
57
+		while ( ! feof($fp)) {
58 58
 		    $buffer = fgets($fp, 4096);
59 59
 		    if ($contentlength > 0) {
60 60
 		      $response .= $buffer;
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,8 +42,7 @@  discard block
 block discarded – undo
42 42
 			}
43 43
 		}
44 44
 		return $fp;
45
-		}
46
-		else {
45
+		} else {
47 46
 		return false;
48 47
 		}           
49 48
 	}
@@ -86,8 +85,7 @@  discard block
 block discarded – undo
86 85
 		}
87 86
 				
88 87
 		return $response;
89
-		}
90
-		else {
88
+		} else {
91 89
 // 	      echo "no handle";
92 90
 		}
93 91
 	}
Please login to merge, or discard this patch.
web_interface/astpp/application/config/cron.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@
 block discarded – undo
7 7
 */
8 8
 
9 9
 $astpp_config = parse_ini_file("/var/lib/astpp/astpp-config.conf");
10
-$config['SERVER_NAME'] 		= $astpp_config['base_url'];	// Your web site url
11
-$config['CRON_TIME_LIMIT']	= 0;								// 0 = no time limit
12
-$config['argv']			= array("LowBalance"=>"lowbalance/low_balance",
10
+$config['SERVER_NAME'] = $astpp_config['base_url']; // Your web site url
11
+$config['CRON_TIME_LIMIT'] = 0; // 0 = no time limit
12
+$config['argv'] = array("LowBalance"=>"lowbalance/low_balance",
13 13
 					"Lowcredit"=>"lowcreditlimit/low_creditlimit",
14 14
 					"UpdateBalance" => "updateBalance/GetUpdateBalance",
15 15
 				        "CurrencyUpdate" => "currencyupdate/update_currency",
16 16
 					"GenerateInvoice" => "generateInvoice/getInvoiceData",
17 17
 					"FeedBack"=>"feedback/customer_feedback_result/TRUE",
18 18
 					"BroadcastEmail" => "broadcastemail/broadcast_email");
19
-$config['CRON_BETA_MODE']	= false;							// Beta Mode (useful for blocking submissions for testing)
19
+$config['CRON_BETA_MODE'] = false; // Beta Mode (useful for blocking submissions for testing)
20 20
 
21 21
 ?>
Please login to merge, or discard this patch.
astpp/application/modules/accounts/views/view_reseller_invoices_config.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
 <?php
209 209
 	if($account_data['logo']  != ''){
210 210
 	     $logo=$account_data['file'];
211
-	}else{
211
+	} else{
212 212
 	     $logo=$account_data['logo'];
213 213
 	}
214 214
           if($logo != ''){        
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -198,13 +198,13 @@
 block discarded – undo
198 198
 				</div>
199 199
 		</div>	
200 200
 <?php
201
-	if($account_data['logo']  != ''){
202
-		 $logo=$account_data['file'];
203
-	}else{
204
-		 $logo=$account_data['logo'];
201
+	if ($account_data['logo'] != '') {
202
+		 $logo = $account_data['file'];
203
+	} else {
204
+		 $logo = $account_data['logo'];
205 205
 	}
206
-		  if($logo != ''){        
207
-			 $file_name= base_url()."upload/$logo";
206
+		  if ($logo != '') {        
207
+			 $file_name = base_url()."upload/$logo";
208 208
 ?>
209 209
 
210 210
 		<div class='col-md-12 no-padding'>
Please login to merge, or discard this patch.
web_interface/astpp/application/modules/did/views/view_did_import.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
               <div class="col-md-12">
17 17
             	<div class="w-box">
18 18
             	 <span  style="margin-left:10px; text-align: center;background-color: none;color:#1c8400;">
19
-                    <? if(isset($error) && !empty($error)) {
19
+                    <? if (isset($error) && ! empty($error)) {
20 20
                         echo $error;
21 21
                     }?>
22 22
                  </span>
Please login to merge, or discard this patch.
astpp/application/modules/refill_coupon/libraries/refill_coupon_form.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@
 block discarded – undo
20 20
 # You should have received a copy of the GNU Affero General Public License
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23
-if (!defined('BASEPATH'))
23
+if (!defined('BASEPATH')) {
24 24
     exit('No direct script access allowed');
25
+}
25 26
 
26 27
 class Refill_coupon_form {
27 28
     function __construct($library_name = '') {
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -20,18 +20,18 @@  discard block
 block discarded – undo
20 20
 # You should have received a copy of the GNU Affero General Public License
21 21
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 22
 ###############################################################################
23
-if (!defined('BASEPATH'))
23
+if ( ! defined('BASEPATH'))
24 24
 	exit('No direct script access allowed');
25 25
 
26 26
 class Refill_coupon_form {
27 27
 	function __construct($library_name = '') {
28 28
 		$this->CI = & get_instance();
29 29
 	}
30
-	function get_refill_coupon_form_fields(){
31
-		$form['forms'] = array(base_url() . 'refill_coupon/refill_coupon_save/',array("id" => "refill_coupon_form", "name" => "refill_coupon_form"));
30
+	function get_refill_coupon_form_fields() {
31
+		$form['forms'] = array(base_url().'refill_coupon/refill_coupon_save/', array("id" => "refill_coupon_form", "name" => "refill_coupon_form"));
32 32
 		$form['Coupon Information'] = array(
33
-		array('Description', 'INPUT', array('name' => 'description', 'size' => '20',  'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', 'Please Enter account number'),
34
-		array('Start prefix', 'INPUT', array('name' => 'prefix', 'size' => '20',  'class' => "text field medium"), 'trim|required|numeric|xss_clean', 'tOOL TIP', ''),
33
+		array('Description', 'INPUT', array('name' => 'description', 'size' => '20', 'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', 'Please Enter account number'),
34
+		array('Start prefix', 'INPUT', array('name' => 'prefix', 'size' => '20', 'class' => "text field medium"), 'trim|required|numeric|xss_clean', 'tOOL TIP', ''),
35 35
 			array('Quantity', 'INPUT', array('name' => 'count', 'size' => '20', 'maxlength' => '5', 'class' => "text field medium"), 'trim|required|is_numeric|greater_than[0]|xss_clean', 'tOOL TIP', 'Please Enter account number'),
36 36
 			array('Amount', 'INPUT', array('name' => 'amount', 'size' => '20', 'class' => "text field medium"), 'trim|required|is_numeric|greater_than[0]|xss_clean', 'tOOL TIP', 'Please Enter account number'),
37 37
 		);
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
 	} 
43 43
 	function build_grid_buttons_refill_coupon() {
44 44
 		$buttons_json = json_encode(array(
45
-		array(gettext("Create"),"btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/refill_coupon/refill_coupon_add/","popup"),
46
-		array(gettext("Export"),"btn btn-xing" ," fa fa-download fa-lg", "button_action", "/refill_coupon/refill_coupon_export/", 'single'),
45
+		array(gettext("Create"), "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/refill_coupon/refill_coupon_add/", "popup"),
46
+		array(gettext("Export"), "btn btn-xing", " fa fa-download fa-lg", "button_action", "/refill_coupon/refill_coupon_export/", 'single'),
47 47
 		   ));
48 48
 		return $buttons_json;
49 49
 	}
@@ -53,14 +53,14 @@  discard block
 block discarded – undo
53 53
 		return $buttons_json;
54 54
 	}
55 55
 	function get_refill_coupon_search_form() {
56
-	   $accountinfo=$this->CI->session->userdata('accountinfo');
57
-	   $reseller_id=$accountinfo['type']== 1 ?$accountinfo['id'] :  0 ;
56
+	   $accountinfo = $this->CI->session->userdata('accountinfo');
57
+	   $reseller_id = $accountinfo['type'] == 1 ? $accountinfo['id'] : 0;
58 58
 		$form['forms'] = array("", array('id' => "refill_coupon_list_search"));
59 59
 		$form['Search'] = array(
60 60
 			array('Coupon Number', 'INPUT', array('name' => 'number[number]', '', 'id' => 'number', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'number[number-string]', '', '', '', 'search_string_type', ''),
61
-			array('Description', 'INPUT', array('name' => 'description[description]', '', 'id' => 'description', 'size' => '15','class' => "text field "), '', 'tOOL TIP', '1', 'description[description-string]', '', '', '', 'search_string_type', ''),
62
-		   array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'IF(`deleted`=1,concat( first_name, " ", last_name, " ", "(", number, ")^" ),concat( first_name, " ", last_name, " ", "(", number, ")" )) as number', 'accounts', 'build_dropdown_deleted', 'where_arr', array("reseller_id" => $reseller_id,"type"=>"GLOBAL")),
63
-			array('Amount', 'INPUT', array('name' => 'amount[amount]', '', 'id' => 'amount', 'size' => '15',  'class' => "text field "), '', 'tOOL TIP', '1', 'amount[amount-integer]', '', '', '', 'search_int_type', ''),
61
+			array('Description', 'INPUT', array('name' => 'description[description]', '', 'id' => 'description', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'description[description-string]', '', '', '', 'search_string_type', ''),
62
+		   array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'IF(`deleted`=1,concat( first_name, " ", last_name, " ", "(", number, ")^" ),concat( first_name, " ", last_name, " ", "(", number, ")" )) as number', 'accounts', 'build_dropdown_deleted', 'where_arr', array("reseller_id" => $reseller_id, "type"=>"GLOBAL")),
63
+			array('Amount', 'INPUT', array('name' => 'amount[amount]', '', 'id' => 'amount', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'amount[amount-integer]', '', '', '', 'search_int_type', ''),
64 64
 			array('Used?', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_refill_coupon_status', '', ''),
65 65
              
66 66
 			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 		$form['Search Refill Coupon'] = array(
78 78
 			array('Coupon Number', 'INPUT', array('name' => 'number[number]', '', 'id' => 'number', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'number[number-string]', '', '', '', 'search_string_type', ''),
79 79
 			array('Description', 'INPUT', array('name' => 'description[description]', '', 'id' => 'description', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'description[description-string]', '', '', '', 'search_string_type', ''),
80
-			array('Amount', 'INPUT', array('name' => 'amount[amount]', '', 'id' => 'amount', 'size' => '15',  'class' => "text field "), '', 'tOOL TIP', '1', 'amount[amount-integer]', '', '', '', 'search_int_type', ''),
80
+			array('Amount', 'INPUT', array('name' => 'amount[amount]', '', 'id' => 'amount', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'amount[amount-integer]', '', '', '', 'search_int_type', ''),
81 81
 			array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_refill_coupon_status', '', ''),
82 82
 			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
83 83
 			array('', 'HIDDEN', 'advance_search', '1', '', '', ''),
@@ -89,17 +89,17 @@  discard block
 block discarded – undo
89 89
 	function build_refill_coupon_grid() {
90 90
 		
91 91
 		$account_info = $accountinfo = $this->CI->session->userdata('accountinfo');
92
-		$currency_id=$account_info['currency_id'];
93
-		$currency=$this->CI->common->get_field_name('currency', 'currency', $currency_id);
92
+		$currency_id = $account_info['currency_id'];
93
+		$currency = $this->CI->common->get_field_name('currency', 'currency', $currency_id);
94 94
 		
95 95
 		$grid_field_arr = json_encode(array(
96
-			array(gettext("Coupon Number"), "150", "number", "", "", "","","true","center"),
97
-			array(gettext("Description"), "165", "description", "", "", "","","true","center"),
98
-			array(gettext("Account"), "165", "account_id", "first_name,last_name,number", "accounts", "build_concat_string","","true","center"),
99
-			array("Amount($currency)", "150", "amount", "amount", "amount", "convert_to_currency","","true","right"),
100
-			array(gettext("Created Date"), "200", "creation_date", "", "", "","","true","center"),
101
-			array(gettext("Used?"),"135","status",'status','status','get_refill_coupon_used',"","true","center"),
102
-			array(gettext("Used Date"), "180", "firstused", "firstused", "firstused", "firstused_check","","true","center"),
96
+			array(gettext("Coupon Number"), "150", "number", "", "", "", "", "true", "center"),
97
+			array(gettext("Description"), "165", "description", "", "", "", "", "true", "center"),
98
+			array(gettext("Account"), "165", "account_id", "first_name,last_name,number", "accounts", "build_concat_string", "", "true", "center"),
99
+			array("Amount($currency)", "150", "amount", "amount", "amount", "convert_to_currency", "", "true", "right"),
100
+			array(gettext("Created Date"), "200", "creation_date", "", "", "", "", "true", "center"),
101
+			array(gettext("Used?"), "135", "status", 'status', 'status', 'get_refill_coupon_used', "", "true", "center"),
102
+			array(gettext("Used Date"), "180", "firstused", "firstused", "firstused", "firstused_check", "", "true", "center"),
103 103
 			array("Action", "120", "", "", "", array(
104 104
 					"DELETE" => array("url" => "refill_coupon/refill_coupon_list_delete/", "mode" => "single")
105 105
 			))
@@ -108,14 +108,14 @@  discard block
 block discarded – undo
108 108
 	}
109 109
 	function build_user_refill_coupon_grid() {
110 110
 		$account_info = $accountinfo = $this->CI->session->userdata('accountinfo');
111
-		 $currency_id=$account_info['currency_id'];
112
-		 $currency=$this->CI->common->get_field_name('currency', 'currency', $currency_id);
111
+		 $currency_id = $account_info['currency_id'];
112
+		 $currency = $this->CI->common->get_field_name('currency', 'currency', $currency_id);
113 113
 		 $grid_field_arr = json_encode(array(
114
-			array("Coupon Number", "230", "number", "", "", "","","true","center"),
115
-			array("Description", "210", "description", "", "", "","","true","center"),
116
-			array("Amount($currency)", "190", "amount", "amount", "amount", "convert_to_currency","","true","right"),
117
-			array("Created Date", "250", "creation_date", "", "", "","","true","center"),
118
-			array("Used Date", "250", "firstused", "firstused", "firstused", "firstused_check","","true","center"),
114
+			array("Coupon Number", "230", "number", "", "", "", "", "true", "center"),
115
+			array("Description", "210", "description", "", "", "", "", "true", "center"),
116
+			array("Amount($currency)", "190", "amount", "amount", "amount", "convert_to_currency", "", "true", "right"),
117
+			array("Created Date", "250", "creation_date", "", "", "", "", "true", "center"),
118
+			array("Used Date", "250", "firstused", "firstused", "firstused", "firstused_check", "", "true", "center"),
119 119
 				));
120 120
 		return $grid_field_arr;
121 121
 	}
Please login to merge, or discard this patch.