Passed
Push — master ( 927fea...c654ad )
by Roeland
10:18
created
apps/federatedfilesharing/templates/settings-admin.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,14 +5,14 @@  discard block
 block discarded – undo
5 5
 style('federatedfilesharing', 'settings-admin');
6 6
 ?>
7 7
 
8
-<?php if($_['internalOnly'] === false): ?>
8
+<?php if ($_['internalOnly'] === false): ?>
9 9
 
10 10
 <div id="fileSharingSettings" class="section">
11 11
 	<h2>
12
-		<?php p($l->t('Federated Cloud Sharing'));?>
12
+		<?php p($l->t('Federated Cloud Sharing')); ?>
13 13
 	</h2>
14 14
 	<a target="_blank" rel="noreferrer noopener" class="icon-info svg"
15
-	   title="<?php p($l->t('Open documentation'));?>"
15
+	   title="<?php p($l->t('Open documentation')); ?>"
16 16
 	   href="<?php p(link_to_docs('admin-sharing-federated')); ?>"></a>
17 17
 
18 18
 	<p class="settings-hint"><?php p($l->t('Adjust how people can share between servers.')); ?></p>
@@ -21,29 +21,29 @@  discard block
 block discarded – undo
21 21
 		<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled" class="checkbox"
22 22
 			   value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
23 23
 		<label for="outgoingServer2serverShareEnabled">
24
-			<?php p($l->t('Allow users on this server to send shares to other servers'));?>
24
+			<?php p($l->t('Allow users on this server to send shares to other servers')); ?>
25 25
 		</label>
26 26
 	</p>
27 27
 	<p>
28 28
 		<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled" class="checkbox"
29 29
 			   value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
30 30
 		<label for="incomingServer2serverShareEnabled">
31
-			<?php p($l->t('Allow users on this server to receive shares from other servers'));?>
31
+			<?php p($l->t('Allow users on this server to receive shares from other servers')); ?>
32 32
 		</label><br/>
33 33
 	</p>
34
-	<?php if($_['federatedGroupSharingSupported']): ?>
34
+	<?php if ($_['federatedGroupSharingSupported']): ?>
35 35
 	<p>
36 36
 		<input type="checkbox" name="outgoing_server2server_group_share_enabled" id="outgoingServer2serverGroupShareEnabled" class="checkbox"
37 37
 			   value="1" <?php if ($_['outgoingServer2serverGroupShareEnabled']) print_unescaped('checked="checked"'); ?> />
38 38
 		<label for="outgoingServer2serverGroupShareEnabled">
39
-			<?php p($l->t('Allow users on this server to send shares to groups on other servers'));?>
39
+			<?php p($l->t('Allow users on this server to send shares to groups on other servers')); ?>
40 40
 		</label>
41 41
 	</p>
42 42
 	<p>
43 43
 		<input type="checkbox" name="incoming_server2server_group_share_enabled" id="incomingServer2serverGroupShareEnabled" class="checkbox"
44 44
 			   value="1" <?php if ($_['incomingServer2serverGroupShareEnabled']) print_unescaped('checked="checked"'); ?> />
45 45
 		<label for="incomingServer2serverGroupShareEnabled">
46
-			<?php p($l->t('Allow users on this server to receive group shares from other servers'));?>
46
+			<?php p($l->t('Allow users on this server to receive group shares from other servers')); ?>
47 47
 		</label><br/>
48 48
 	</p>
49 49
 	<?php endif; ?>
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
 		<input type="checkbox" name="lookupServerEnabled" id="lookupServerEnabled" class="checkbox"
52 52
 			   value="1" <?php if ($_['lookupServerEnabled']) print_unescaped('checked="checked"'); ?> />
53 53
 		<label for="lookupServerEnabled">
54
-			<?php p($l->t('Search global and public address book for users'));?>
54
+			<?php p($l->t('Search global and public address book for users')); ?>
55 55
 		</label><br/>
56 56
 	</p>
57 57
 	<p>
58 58
 		<input type="checkbox" name="lookupServerUploadEnabled" id="lookupServerUploadEnabled" class="checkbox"
59 59
 			   value="1" <?php if ($_['lookupServerUploadEnabled']) print_unescaped('checked="checked"'); ?> />
60 60
 		<label for="lookupServerUploadEnabled">
61
-			<?php p($l->t('Allow users to publish their data to a global and public address book'));?>
61
+			<?php p($l->t('Allow users to publish their data to a global and public address book')); ?>
62 62
 		</label><br/>
63 63
 	</p>
64 64
 
Please login to merge, or discard this patch.