Completed
Pull Request — master (#8818)
by Morris
38:45 queued 20:41
created
core/templates/login.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 <form method="post" name="login">
9 9
 	<fieldset>
10 10
 	<?php if (!empty($_['redirect_url'])) {
11
-		print_unescaped('<input type="hidden" name="redirect_url" value="' . \OCP\Util::sanitizeHTML($_['redirect_url']) . '">');
11
+		print_unescaped('<input type="hidden" name="redirect_url" value="'.\OCP\Util::sanitizeHTML($_['redirect_url']).'">');
12 12
 	} ?>
13 13
 		<?php if (isset($_['apacheauthfailed']) && $_['apacheauthfailed']): ?>
14 14
 			<div class="warning">
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 				<small><?php p($l->t('Please contact your administrator.')); ?></small>
17 17
 			</div>
18 18
 		<?php endif; ?>
19
-		<?php foreach($_['messages'] as $message): ?>
19
+		<?php foreach ($_['messages'] as $message): ?>
20 20
 			<div class="warning">
21 21
 				<?php p($message); ?><br>
22 22
 			</div>
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 		<?php endif; ?>
30 30
 		<div id="message" class="hidden">
31 31
 			<img class="float-spinner" alt=""
32
-				src="<?php p(image_path('core', 'loading-dark.gif'));?>">
32
+				src="<?php p(image_path('core', 'loading-dark.gif')); ?>">
33 33
 			<span id="messageText"></span>
34 34
 			<!-- the following div ensures that the spinner is always inside the #message div -->
35 35
 			<div style="clear: both;"></div>
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 <form id="alternative-logins">
108 108
 	<fieldset>
109 109
 		<ul>
110
-			<?php foreach($_['alt_login'] as $login): ?>
110
+			<?php foreach ($_['alt_login'] as $login): ?>
111 111
 				<li><a class="button" href="<?php print_unescaped($login['href']); ?>" ><?php p($login['name']); ?></a></li>
112 112
 			<?php endforeach; ?>
113 113
 		</ul>
Please login to merge, or discard this patch.