diff options
author | CharlyCoste <contact@ccoste.fr> | 2010-03-14 01:33:49 +0100 |
---|---|---|
committer | CharlyCoste <contact@ccoste.fr> | 2010-03-14 01:33:49 +0100 |
commit | 3984607ef5f7af3c00449bbc5a0f587ef9e25b60 (patch) | |
tree | 196615372f2014a4e06302e25b5d27d491dc0f02 /settings | |
parent | df612293fd8c70407843a76a5c73ff8530528a73 (diff) | |
download | nextcloud-server-3984607ef5f7af3c00449bbc5a0f587ef9e25b60.tar.gz nextcloud-server-3984607ef5f7af3c00449bbc5a0f587ef9e25b60.zip |
center is not a valid strict xhtml1.0 tag (not semantic). At least, replacing it by a div with "center" class.
Diffstat (limited to 'settings')
-rwxr-xr-x | settings/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/index.php b/settings/index.php index a5e3649e855..61296433673 100755 --- a/settings/index.php +++ b/settings/index.php @@ -26,9 +26,9 @@ require_once('../config/config.php'); OC_UTIL::showheader(); -echo('<center>'); +echo('<div class="center">'); echo('nothing here yet :-)'); -echo('</center><br /><br />'); +echo('</div><br /><br />'); OC_UTIL::showfooter(); |