Gerrit Patch Uploader has uploaded a new change for review. https://gerrit.wikimedia.org/r/189465
Change subject: Generate valid HTML code on error pages ...................................................................... Generate valid HTML code on error pages For img_auth.php see http://validator.w3.org/check?uri=https%3A%2F%2Fwww.mediawiki.org%2Fw%2Fimg_auth.php;No200=1 For profileinfo.php consistently use "/>" for self-closing elements. Change-Id: I7e6aad0e7a2a745836adc430e3b2f3be5f31b6bb --- M img_auth.php M profileinfo.php 2 files changed, 7 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/65/189465/1 diff --git a/img_auth.php b/img_auth.php index 51470b6..f44cac0 100644 --- a/img_auth.php +++ b/img_auth.php @@ -201,7 +201,12 @@ header( 'Cache-Control: no-cache' ); header( 'Content-Type: text/html; charset=utf-8' ); echo <<<ENDS +<!DOCTYPE html> <html> +<head> +<meta charset="UTF-8" /> +<title>$msgHdr</title> +</head> <body> <h1>$msgHdr</h1> <p>$detailMsg</p> diff --git a/profileinfo.php b/profileinfo.php index 4e3fb5a..f172cfb 100644 --- a/profileinfo.php +++ b/profileinfo.php @@ -36,7 +36,7 @@ <!DOCTYPE html> <html> <head> - <meta charset="UTF-8"> + <meta charset="UTF-8" /> <title>Profiling data</title> <style> /* noc.wikimedia.org/base.css */ @@ -422,7 +422,7 @@ ?> </tbody> </table> -<hr> +<hr /> <p>Total time: <code><?php printf( '%5.02f', profile_point::$totaltime ); ?></code></p> <p>Total memory: <code><?php printf( '%5.02f', profile_point::$totalmemory / 1024 ); ?></code></p> -- To view, visit https://gerrit.wikimedia.org/r/189465 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I7e6aad0e7a2a745836adc430e3b2f3be5f31b6bb Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Gerrit Patch Uploader <[email protected]> Gerrit-Reviewer: Gerrit Patch Uploader <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
