Passed
Push — master ( 41373a...89c8ae )
by Aimeos
05:11
created
admin/jqadm/templates/product/item-media-standard.php 2 patches
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,9 +121,12 @@  discard block
 block discarded – undo
121 121
 								<?= $enc->html( $this->translate( 'admin', 'Types for additional images like icons' ) ); ?>
122 122
 							</div>
123 123
 						</div>
124
-					<?php else : ?>
124
+					<?php else {
125
+	: ?>
125 126
 						<input class="item-type" type="hidden"
126
-							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.type' ) ) ); ?>'.replace( 'idx', idx )"
127
+							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.type' ) ) );
128
+}
129
+?>'.replace( 'idx', idx )"
127 130
 							value="<?= $enc->attr( key( $mediaTypes ) ); ?>" />
128 131
 					<?php endif; ?>
129 132
 
@@ -201,9 +204,12 @@  discard block
 block discarded – undo
201 204
 								<?= $enc->html( $this->translate( 'admin', 'Second level type for grouping items' ) ); ?>
202 205
 							</div>
203 206
 						</div>
204
-					<?php else : ?>
207
+					<?php else {
208
+	: ?>
205 209
 						<input class="listitem-type" type="hidden"
206
-							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'product.lists.type' ) ) ); ?>'.replace( 'idx', idx )"
210
+							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'product.lists.type' ) ) );
211
+}
212
+?>'.replace( 'idx', idx )"
207 213
 							value="<?= $enc->attr( key( $listTypes ) ); ?>"
208 214
 							v-model="items[idx]['product.lists.type']" />
209 215
 					<?php endif; ?>
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 				v-bind:aria-controls="'item-media-group-data-' + idx" aria-expanded="false">
30 30
 				<div class="card-tools-left">
31 31
 					<div class="btn btn-card-header act-show fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
32
-						title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide this entry') ); ?>">
32
+						title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide this entry' ) ); ?>">
33 33
 					</div>
34 34
 				</div>
35 35
 				<span class="item-label header-label" v-html="getLabel(idx)"></span>
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 				<div class="card-tools-right">
38 38
 					<div v-if="!checkSite('product.lists.siteid', idx)"
39 39
 						class="btn btn-card-header act-delete fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
40
-						title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>"
40
+						title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>"
41 41
 						v-on:click.stop="removeItem(idx)">
42 42
 					</div>
43 43
 				</div>
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.url' ) ) ); ?>'.replace( 'idx', idx )"
63 63
 							v-model="items[idx]['media.url']" />
64 64
 						<img v-if="items[idx]['media.preview']" class="item-preview"
65
-							v-bind:src="getUrl('<?= $this->content('') ?>', items[idx]['media.preview'])"
65
+							v-bind:src="getUrl('<?= $this->content( '' ) ?>', items[idx]['media.preview'])"
66 66
 							v-bind:alt="items[idx]['media.label']" />
67 67
 						<p v-else class="item-preview">
68 68
 							{{ items[idx]['media.label'] || '<?= $enc->html( $this->translate( 'admin', 'Select file' ) ) ?>' }}
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 				<div v-on:click="toggle(idx)" class="col-xl-12 advanced" v-bind:class="{ 'collapsed': !advanced[idx] }">
172 172
 					<div class="card-tools-left">
173 173
 						<div class="btn act-show fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
174
-							title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide advanced data') ); ?>">
174
+							title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide advanced data' ) ); ?>">
175 175
 						</div>
176 176
 					</div>
177 177
 					<span class="header-label"><?= $enc->html( $this->translate( 'admin', 'Advanced' ) ); ?></span>
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 								</th>
251 251
 								<th class="actions">
252 252
 									<div class="btn act-add fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
253
-										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
253
+										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
254 254
 										v-bind:readonly="checkSite('product.lists.siteid', idx)"
255 255
 										v-on:click="addConfig(idx)" >
256 256
 									</div>
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 								<td class="actions">
278 278
 									<div v-if="!checkSite('product.lists.siteid', idx)" v-on:click="removeConfig(idx, pos)"
279 279
 										class="btn act-delete fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
280
-										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>">
280
+										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>">
281 281
 									</div>
282 282
 								</td>
283 283
 							</tr>
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
 
294 294
 		<div class="card-tools-more">
295 295
 			<div class="btn btn-primary btn-card-more act-add fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
296
-				title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
296
+				title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
297 297
 				v-on:click="addItem('product.lists.')" >
298 298
 			</div>
299 299
 		</div>
Please login to merge, or discard this patch.
admin/jqadm/templates/service/item-media-standard.php 2 patches
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,9 +121,12 @@  discard block
 block discarded – undo
121 121
 								<?= $enc->html( $this->translate( 'admin', 'Types for additional images like icons' ) ); ?>
122 122
 							</div>
123 123
 						</div>
124
-					<?php else : ?>
124
+					<?php else {
125
+	: ?>
125 126
 						<input class="item-type" type="hidden"
126
-							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.type' ) ) ); ?>'.replace( 'idx', idx )"
127
+							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.type' ) ) );
128
+}
129
+?>'.replace( 'idx', idx )"
127 130
 							value="<?= $enc->attr( key( $mediaTypes ) ); ?>" />
128 131
 					<?php endif; ?>
129 132
 
@@ -201,9 +204,12 @@  discard block
 block discarded – undo
201 204
 								<?= $enc->html( $this->translate( 'admin', 'Second level type for grouping items' ) ); ?>
202 205
 							</div>
203 206
 						</div>
204
-					<?php else : ?>
207
+					<?php else {
208
+	: ?>
205 209
 						<input class="listitem-type" type="hidden"
206
-							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'service.lists.type' ) ) ); ?>'.replace( 'idx', idx )"
210
+							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'service.lists.type' ) ) );
211
+}
212
+?>'.replace( 'idx', idx )"
207 213
 							value="<?= $enc->attr( key( $listTypes ) ); ?>"
208 214
 							v-model="items[idx]['service.lists.type']" />
209 215
 					<?php endif; ?>
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 				v-bind:aria-controls="'item-media-group-data-' + idx" aria-expanded="false">
30 30
 				<div class="card-tools-left">
31 31
 					<div class="btn btn-card-header act-show fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
32
-						title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide this entry') ); ?>">
32
+						title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide this entry' ) ); ?>">
33 33
 					</div>
34 34
 				</div>
35 35
 				<span class="item-label header-label" v-html="getLabel(idx)"></span>
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 				<div class="card-tools-right">
38 38
 					<div v-if="!checkSite('service.lists.siteid', idx)"
39 39
 						class="btn btn-card-header act-delete fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
40
-						title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>"
40
+						title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>"
41 41
 						v-on:click.stop="removeItem(idx)">
42 42
 					</div>
43 43
 				</div>
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 							v-bind:name="'<?= $enc->attr( $this->formparam( array( 'media', 'idx', 'media.url' ) ) ); ?>'.replace( 'idx', idx )"
63 63
 							v-model="items[idx]['media.url']" />
64 64
 						<img v-if="items[idx]['media.preview']" class="item-preview"
65
-							v-bind:src="getUrl('<?= $this->content('') ?>', items[idx]['media.preview'])"
65
+							v-bind:src="getUrl('<?= $this->content( '' ) ?>', items[idx]['media.preview'])"
66 66
 							v-bind:alt="items[idx]['media.label']" />
67 67
 						<p v-else class="item-preview">
68 68
 							{{ items[idx]['media.label'] || '<?= $enc->html( $this->translate( 'admin', 'Select file' ) ) ?>' }}
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 				<div v-on:click="toggle(idx)" class="col-xl-12 advanced" v-bind:class="{ 'collapsed': !advanced[idx] }">
172 172
 					<div class="card-tools-left">
173 173
 						<div class="btn act-show fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
174
-							title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide advanced data') ); ?>">
174
+							title="<?= $enc->attr( $this->translate( 'admin', 'Show/hide advanced data' ) ); ?>">
175 175
 						</div>
176 176
 					</div>
177 177
 					<span class="header-label"><?= $enc->html( $this->translate( 'admin', 'Advanced' ) ); ?></span>
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 								</th>
251 251
 								<th class="actions">
252 252
 									<div class="btn act-add fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
253
-										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
253
+										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
254 254
 										v-bind:readonly="checkSite('service.lists.siteid', idx)"
255 255
 										v-on:click="addConfig(idx)" >
256 256
 									</div>
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 								<td class="actions">
278 278
 									<div v-if="!checkSite('service.lists.siteid', idx)" v-on:click="removeConfig(idx, pos)"
279 279
 										class="btn act-delete fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
280
-										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>">
280
+										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>">
281 281
 									</div>
282 282
 								</td>
283 283
 							</tr>
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
 
294 294
 		<div class="card-tools-more">
295 295
 			<div class="btn btn-primary btn-card-more act-add fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
296
-				title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
296
+				title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
297 297
 				v-on:click="addItem('service.lists.')" >
298 298
 			</div>
299 299
 		</div>
Please login to merge, or discard this patch.
admin/jqadm/templates/locale/currency/list-standard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 				<th class="actions">
110 110
 					<a class="btn fa act-add" tabindex="1"
111 111
 						href="<?= $enc->attr( $this->url( $newTarget, $newCntl, $newAction, $params, [], $newConfig ) ); ?>"
112
-						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
112
+						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
113 113
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Add' ) ); ?>">
114 114
 					</a>
115 115
 
@@ -171,11 +171,11 @@  discard block
 block discarded – undo
171 171
 					<td class="actions">
172 172
 						<a class="btn act-copy fa" tabindex="1"
173 173
 							href="<?= $enc->attr( $this->url( $copyTarget, $copyCntl, $copyAction, ['id' => $id] + $params, [], $copyConfig ) ); ?>"
174
-							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry') ); ?>"
174
+							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry' ) ); ?>"
175 175
 							aria-label="<?= $enc->attr( $this->translate( 'admin', 'Copy' ) ); ?>"></a>
176 176
 						<a class="btn act-delete fa" tabindex="1"
177 177
 							href="<?= $enc->attr( $this->url( $delTarget, $delCntl, $delAction, ['id' => $id] + $params, [], $delConfig ) ); ?>"
178
-							title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>"
178
+							title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>"
179 179
 							aria-label="<?= $enc->attr( $this->translate( 'admin', 'Delete' ) ); ?>"></a>
180 180
 					</td>
181 181
 				</tr>
Please login to merge, or discard this patch.
admin/jqadm/templates/locale/site/item-standard.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
 				<?php foreach( array_values( $this->get( 'itemSubparts', [] ) ) as $idx => $subpart ) : ?>
54 54
 					<li class="nav-item <?= $enc->attr( $subpart ); ?>">
55
-						<a class="nav-link" href="#<?= $enc->attr( $subpart ); ?>" data-toggle="tab" role="tab" tabindex="<?= ++$idx+1; ?>">
55
+						<a class="nav-link" href="#<?= $enc->attr( $subpart ); ?>" data-toggle="tab" role="tab" tabindex="<?= ++$idx + 1; ?>">
56 56
 							<?= $enc->html( $this->translate( 'admin', $subpart ) ); ?>
57 57
 						</a>
58 58
 					</li>
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 								</th>
145 145
 								<th class="actions">
146 146
 									<div class="btn act-add fa" tabindex="1"
147
-										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>">
147
+										title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>">
148 148
 									</div>
149 149
 								</th>
150 150
 							</tr>
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 									</td>
166 166
 									<td class="actions">
167 167
 										<div class="btn act-delete fa" tabindex="1"
168
-											title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>">
168
+											title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>">
169 169
 										</div>
170 170
 									</td>
171 171
 								</tr>
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 								</td>
183 183
 								<td class="actions">
184 184
 									<div class="btn act-delete fa" tabindex="1"
185
-										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>">
185
+										title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>">
186 186
 									</div>
187 187
 								</td>
188 188
 							</tr>
Please login to merge, or discard this patch.
admin/jqadm/templates/locale/site/list-standard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 					<?php if( $this->access( 'super' ) ) : ?>
112 112
 						<a class="btn fa act-add" tabindex="1"
113 113
 							href="<?= $enc->attr( $this->url( $newTarget, $newCntl, $newAction, $params, [], $newConfig ) ); ?>"
114
-							title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
114
+							title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
115 115
 							aria-label="<?= $enc->attr( $this->translate( 'admin', 'Add' ) ); ?>">
116 116
 						</a>
117 117
 					<?php endif; ?>
@@ -187,11 +187,11 @@  discard block
 block discarded – undo
187 187
 						<?php if( $this->access( 'super' ) ) : ?>
188 188
 							<a class="btn act-copy fa" tabindex="1"
189 189
 								href="<?= $enc->attr( $this->url( $copyTarget, $copyCntl, $copyAction, ['id' => $id] + $params, [], $copyConfig ) ); ?>"
190
-								title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry') ); ?>"
190
+								title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry' ) ); ?>"
191 191
 								aria-label="<?= $enc->attr( $this->translate( 'admin', 'Copy' ) ); ?>"></a>
192 192
 							<a class="btn act-delete fa" tabindex="1"
193 193
 								href="<?= $enc->attr( $this->url( $delTarget, $delCntl, $delAction, ['id' => $id] + $params, [], $delConfig ) ); ?>"
194
-								title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>"
194
+								title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>"
195 195
 								aria-label="<?= $enc->attr( $this->translate( 'admin', 'Delete' ) ); ?>"></a>
196 196
 						<?php endif; ?>
197 197
 					</td>
Please login to merge, or discard this patch.
admin/jqadm/templates/locale/list-standard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 				<th class="actions">
112 112
 					<a class="btn fa act-add" tabindex="1"
113 113
 						href="<?= $enc->attr( $this->url( $newTarget, $newCntl, $newAction, $params, [], $newConfig ) ); ?>"
114
-						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
114
+						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
115 115
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Add' ) ); ?>">
116 116
 					</a>
117 117
 
@@ -177,12 +177,12 @@  discard block
 block discarded – undo
177 177
 					<td class="actions">
178 178
 						<a class="btn act-copy fa" tabindex="1"
179 179
 							href="<?= $enc->attr( $this->url( $copyTarget, $copyCntl, $copyAction, ['id' => $id] + $params, [], $copyConfig ) ); ?>"
180
-							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry') ); ?>"
180
+							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry' ) ); ?>"
181 181
 							aria-label="<?= $enc->attr( $this->translate( 'admin', 'Copy' ) ); ?>"></a>
182 182
 						<?php if( !$this->site()->readonly( $item->getSiteId() ) ) : ?>
183 183
 							<a class="btn act-delete fa" tabindex="1"
184 184
 								href="<?= $enc->attr( $this->url( $delTarget, $delCntl, $delAction, ['resource' => 'locale', 'id' => $id] + $params, [], $delConfig ) ); ?>"
185
-								title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry') ); ?>"
185
+								title="<?= $enc->attr( $this->translate( 'admin', 'Delete this entry' ) ); ?>"
186 186
 								aria-label="<?= $enc->attr( $this->translate( 'admin', 'Delete' ) ); ?>"></a>
187 187
 						<?php endif; ?>
188 188
 					</td>
Please login to merge, or discard this patch.
admin/jqadm/templates/log/list-standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 						);
85 85
 					?>
86 86
 					<button type="submit" class="btn act-search fa" tabindex="<?= $this->get( 'tabindex' ); ?>"
87
-						title="<?= $enc->attr( $this->translate( 'admin', 'Search') ); ?>"
87
+						title="<?= $enc->attr( $this->translate( 'admin', 'Search' ) ); ?>"
88 88
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Search' ) ); ?>">
89 89
 					</button>
90 90
 				</th>
Please login to merge, or discard this patch.
admin/jqadm/templates/order/item-invoice-standard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 
108 108
 				<th class="actions">
109 109
 					<a class="btn fa act-add" href="#" tabindex="<?= $this->get( 'tabindex' ); ?>"
110
-						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)') ); ?>"
110
+						title="<?= $enc->attr( $this->translate( 'admin', 'Insert new entry (Ctrl+I)' ) ); ?>"
111 111
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Add' ) ); ?>">
112 112
 					</a>
113 113
 
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 				</td>
245 245
 				<td class="actions">
246 246
 					<a class="btn fa act-close" href="#" tabindex="<?= $this->get( 'tabindex' ); ?>"
247
-						title="<?= $enc->attr( $this->translate( 'admin', 'Close') ); ?>"
247
+						title="<?= $enc->attr( $this->translate( 'admin', 'Close' ) ); ?>"
248 248
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Close' ) ); ?>">
249 249
 					</a>
250 250
 				</td>
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 					<td class="actions">
346 346
 						<?php if( !$this->site()->readonly( $siteId ) ) : ?>
347 347
 							<a class="btn act-edit fa" tabindex="<?= $this->get( 'tabindex' ); ?>" href="#"
348
-								title="<?= $enc->attr( $this->translate( 'admin', 'Edit this entry') ); ?>"
348
+								title="<?= $enc->attr( $this->translate( 'admin', 'Edit this entry' ) ); ?>"
349 349
 								aria-label="<?= $enc->attr( $this->translate( 'admin', 'Edit' ) ); ?>"></a>
350 350
 						<?php endif; ?>
351 351
 					</td>
Please login to merge, or discard this patch.
admin/jqadm/templates/order/list-standard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 				<th class="actions">
237 237
 					<a class="btn fa act-download" tabindex="1"
238 238
 						href="<?= $enc->attr( $this->url( $expTarget, $expCntl, $expAction, $params, [], $expConfig ) ); ?>"
239
-						title="<?= $enc->attr( $this->translate( 'admin', 'Download') ); ?>"
239
+						title="<?= $enc->attr( $this->translate( 'admin', 'Download' ) ); ?>"
240 240
 						aria-label="<?= $enc->attr( $this->translate( 'admin', 'Download' ) ); ?>">
241 241
 					</a>
242 242
 
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
 					<td class="actions">
493 493
 						<a class="btn act-copy fa"
494 494
 							href="<?= $enc->attr( $this->url( $copyTarget, $copyCntl, $copyAction, ['id' => $item->getBaseId()] + $params, [], $copyConfig ) ); ?>"
495
-							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry') ); ?>"
495
+							title="<?= $enc->attr( $this->translate( 'admin', 'Copy this entry' ) ); ?>"
496 496
 							aria-label="<?= $enc->attr( $this->translate( 'admin', 'Copy' ) ); ?>"></a>
497 497
 					</td>
498 498
 				</tr>
Please login to merge, or discard this patch.