From 47c641cfb9abc5111bc6eae7c4d25c907a4fe7a4 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Tue, 16 Jun 2015 15:33:26 -0400 Subject: [PATCH] Removed two lines that should not have been in the code. --- classes/glmMesGateway.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/classes/glmMesGateway.php b/classes/glmMesGateway.php index 44ed9e8..bb96ad8 100644 --- a/classes/glmMesGateway.php +++ b/classes/glmMesGateway.php @@ -255,24 +255,12 @@ class GlmMesGateway extends WC_Payment_Gateway $this->title = $this->settings['title']; $this->description = $this->settings['description']; - $this->settings['address_verification'] == $this->settings['address_verification']; - $this->settings['cvv_required'] = $this->settings['cvv_required']; - // Add credit cards available to the description $this->description .= '

Credit Cards Accepted

' . ($this->settings['visa'] == 'yes' ? 'VISA  ' : '') . ($this->settings['mastercard'] == 'yes' ? 'MASTERCARD  ' : '') . ($this->settings['amex'] == 'yes' ? 'AMEX  ' : '') . ($this->settings['discover'] == 'yes' ? 'DISCOVER  ' : '') . '

'; -/* - $this->description .= '

Credit Cards Accepted

' . ($this->settings['visa'] == - 'yes' ? '' : '') . ($this->settings['mastercard'] == - 'yes' ? '' : '') . ($this->settings['amex'] == - 'yes' ? '' : '') . ($this->settings['discover'] == - 'yes' ? '' : '') . '

'; -*/ // Check for SSL add_action('admin_notices', array( -- 2.17.1