Passed
Push — master ( 874e8f...31450f )
by Aimeos
04:33
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
@@ -60,9 +60,12 @@  discard block
 block discarded – undo
60 60
 		<p class="order-notice">
61 61
 			<?= $enc->html( $this->translate( 'client', 'Please enter your payment details' ), $enc::TRUST ); ?>
62 62
 		</p>
63
-	<?php else : ?>
63
+	<?php else {
64
+	: ?>
64 65
 		<p class="order-notice">
65
-			<?= $enc->html( $this->translate( 'client', 'You will now be forwarded to the next step' ), $enc::TRUST ); ?>
66
+			<?= $enc->html( $this->translate( 'client', 'You will now be forwarded to the next step' ), $enc::TRUST );
67
+}
68
+?>
66 69
 		</p>
67 70
 	<?php endif; ?>
68 71
 
@@ -75,8 +78,11 @@  discard block
 block discarded – undo
75 78
 				<input type="hidden" id="process-<?= $id; ?>" value="<?= $enc->attr( $value ); ?>"
76 79
 					name="<?= $enc->attr( $this->formparam( [$item->getInternalCode(), $key], $prefix ) ); ?>"
77 80
 				/>
78
-			<?php else : ?>
79
-				<input type="hidden" id="process-<?= $id; ?>" value="<?= $enc->attr( $value ); ?>"
81
+			<?php else {
82
+	: ?>
83
+				<input type="hidden" id="process-<?= $id;
84
+}
85
+?>" value="<?= $enc->attr( $value ); ?>"
80 86
 					name="<?= $enc->attr( $this->formparam( $item->getInternalCode(), $prefix ) ); ?>"
81 87
 				/>
82 88
 			<?php endif; ?>
@@ -170,10 +176,13 @@  discard block
 block discarded – undo
170 176
 				<?= $enc->html( $this->translate( 'client', 'Change payment' ), $enc::TRUST ); ?>
171 177
 			</a>
172 178
 
173
-		<?php else : ?>
179
+		<?php else {
180
+	: ?>
174 181
 
175 182
 			<button class="btn btn-primary btn-lg btn-action">
176
-				<?= $enc->html( $this->translate( 'client', 'Proceed' ), $enc::TRUST ); ?>
183
+				<?= $enc->html( $this->translate( 'client', 'Proceed' ), $enc::TRUST );
184
+}
185
+?>
177 186
 			</button>
178 187
 
179 188
 		<?php endif; ?>
Please login to merge, or discard this patch.