Completed
Push — master ( 2965aa...ff8edc )
by Aimeos
03:16
created
client/html/templates/checkout/standard/process-body-standard.php 1 patch
Braces   +15 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,9 +57,12 @@  discard block
 block discarded – undo
57 57
 		<p class="order-notice">
58 58
 			<?= $enc->html( $this->translate( 'client', 'Please enter your payment details' ), $enc::TRUST ); ?>
59 59
 		</p>
60
-	<?php else : ?>
60
+	<?php else {
61
+	: ?>
61 62
 		<p class="order-notice">
62
-			<?= $enc->html( $this->translate( 'client', 'You will now be forwarded to the next step' ), $enc::TRUST ); ?>
63
+			<?= $enc->html( $this->translate( 'client', 'You will now be forwarded to the next step' ), $enc::TRUST );
64
+}
65
+?>
63 66
 		</p>
64 67
 	<?php endif; ?>
65 68
 
@@ -72,8 +75,11 @@  discard block
 block discarded – undo
72 75
 				<input type="hidden" id="process-<?= $id; ?>" value="<?= $enc->attr( $value ); ?>"
73 76
 					name="<?= $enc->attr( $this->formparam( [$item->getInternalCode(), $key], $prefix ) ); ?>"
74 77
 				/>
75
-			<?php else : ?>
76
-				<input type="hidden" id="process-<?= $id; ?>" value="<?= $enc->attr( $value ); ?>"
78
+			<?php else {
79
+	: ?>
80
+				<input type="hidden" id="process-<?= $id;
81
+}
82
+?>" value="<?= $enc->attr( $value ); ?>"
77 83
 					name="<?= $enc->attr( $this->formparam( $item->getInternalCode(), $prefix ) ); ?>"
78 84
 				/>
79 85
 			<?php endif; ?>
@@ -161,10 +167,13 @@  discard block
 block discarded – undo
161 167
 				<?= $enc->html( $this->translate( 'client', 'Proceed' ), $enc::TRUST ); ?>
162 168
 			</a>
163 169
 
164
-		<?php else : ?>
170
+		<?php else {
171
+	: ?>
165 172
 
166 173
 			<button class="btn btn-primary btn-lg btn-action">
167
-				<?= $enc->html( $this->translate( 'client', 'Proceed' ), $enc::TRUST ); ?>
174
+				<?= $enc->html( $this->translate( 'client', 'Proceed' ), $enc::TRUST );
175
+}
176
+?>
168 177
 			</button>
169 178
 
170 179
 		<?php endif; ?>
Please login to merge, or discard this patch.