[Pkg-owncloud-commits] [owncloud] 335/457: Changed a p element by a div

David Prévot taffit at moszumanska.debian.org
Sun Jun 28 20:06:35 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch stable8
in repository owncloud.

commit eac117fc8fbc8b31e45b2e811a86188f40223eaf
Author: Brewal <brewal.renault at gmail.com>
Date:   Mon Jun 8 15:22:52 2015 +0200

    Changed a p element by a div
    
    A p element cannot contain a div element (here `<div style="clear: both;"></div>`). It should be change by a div element to fits standards.
---
 core/templates/login.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/templates/login.php b/core/templates/login.php
index b24c9cb..1586c11 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -30,13 +30,13 @@ script('core', [
 				<small><?php p($l->t('Please try again or contact your administrator.')); ?></small>
 			</div>
 		<?php endif; ?>
-		<p id="message" class="hidden">
+		<div id="message" class="hidden">
 			<img class="float-spinner" alt=""
 				src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>">
 			<span id="messageText"></span>
 			<!-- the following div ensures that the spinner is always inside the #message div -->
 			<div style="clear: both;"></div>
-		</p>
+		</div>
 		<p class="grouptop">
 			<input type="text" name="user" id="user"
 				placeholder="<?php p($l->t('Username')); ?>"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list