Completed
Push — master ( 8cdaf4...db6695 )
by Marcus
02:35
created
src/Controller/Shop/Myorders.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -160,14 +160,11 @@
 block discarded – undo
160 160
 
161 161
                 if ($aRow["o_paymentmethod"] === 'prepay') {
162 162
                     $sPaymentmethod = $this->textcats->T("order_paymentmethod_prepay");
163
-                }
164
-                elseif ($aRow["o_paymentmethod"] === 'paypal') {
163
+                } elseif ($aRow["o_paymentmethod"] === 'paypal') {
165 164
                     $sPaymentmethod = $this->textcats->T("order_paymentmethod_paypal");
166
-                }
167
-                elseif ($aRow["o_paymentmethod"] === 'debit') {
165
+                } elseif ($aRow["o_paymentmethod"] === 'debit') {
168 166
                     $sPaymentmethod = $this->textcats->T("order_paymentmethod_debit");
169
-                }
170
-                elseif ($aRow["o_paymentmethod"] === 'invoice') {
167
+                } elseif ($aRow["o_paymentmethod"] === 'invoice') {
171 168
                     $sPaymentmethod = $this->textcats->T("order_paymentmethod_invoice");
172 169
                 } else {
173 170
                     $sPaymentmethod = ucwords($aRow["o_paymentmethod"]);
Please login to merge, or discard this patch.