summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xclasses/feeds.php1
-rwxr-xr-xclasses/handler/public.php5
-rwxr-xr-xinclude/login_form.php1
-rwxr-xr-xinclude/sanity_check.php1
-rw-r--r--index.php3
-rwxr-xr-xinstall/index.php2
-rw-r--r--plugins/auth_internal/init.php4
-rw-r--r--prefs.php3
-rw-r--r--register.php2
-rwxr-xr-xupdate.php4
10 files changed, 17 insertions, 9 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 0b32770b5..5daed696a 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -830,6 +830,7 @@ class Feeds extends Handler_Protected {
$rehash_checked = isset($_REQUEST["force_rehash"]) ? "checked" : "";
?>
+ <!DOCTYPE html>
<html>
<head>
<?php echo stylesheet_tag("css/default.css") ?>
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 37fe8612a..5cb5bd64a 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -525,6 +525,7 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
?>
+ <!DOCTYPE html>
<html>
<head>
<title><?php echo __("Share with Tiny Tiny RSS") ?> ?></title>
@@ -742,6 +743,7 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
?>
+ <!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS</title>
@@ -866,7 +868,7 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
?>
-
+ <!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS</title>
@@ -1071,6 +1073,7 @@ class Handler_Public extends Handler {
}
?>
+ <!DOCTYPE html>
<html>
<head>
<title>Database Updater</title>
diff --git a/include/login_form.php b/include/login_form.php
index 68ebcef29..069a1fb6b 100755
--- a/include/login_form.php
+++ b/include/login_form.php
@@ -1,4 +1,5 @@
<?php startup_gettext(); ?>
+<!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS : Login</title>
diff --git a/include/sanity_check.php b/include/sanity_check.php
index c2ecee368..3612b4e56 100755
--- a/include/sanity_check.php
+++ b/include/sanity_check.php
@@ -176,6 +176,7 @@
}
if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
+ <!DOCTYPE html>
<html>
<head>
<title>Startup failed</title>
diff --git a/index.php b/index.php
index 9dabdb7e0..e0767eb9f 100644
--- a/index.php
+++ b/index.php
@@ -34,8 +34,7 @@
header('Content-Type: text/html; charset=utf-8');
?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS</title>
diff --git a/install/index.php b/install/index.php
index f4f5fa6f3..accabe3d3 100755
--- a/install/index.php
+++ b/install/index.php
@@ -22,7 +22,7 @@
return "<script type=\"text/javascript\" charset=\"utf-8\" src=\"$filename?$timestamp\"></script>\n";
}
?>
-
+<!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS - Installer</title>
diff --git a/plugins/auth_internal/init.php b/plugins/auth_internal/init.php
index e1eee9f15..8200ddc02 100644
--- a/plugins/auth_internal/init.php
+++ b/plugins/auth_internal/init.php
@@ -48,7 +48,9 @@ class Auth_Internal extends Plugin implements IAuthModule {
}
} else {
$return = urlencode($_REQUEST["return"]);
- ?><html>
+ ?>
+ <!DOCTYPE html>
+ <html>
<head>
<title>Tiny Tiny RSS</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
diff --git a/prefs.php b/prefs.php
index 660998b81..8a7b788d7 100644
--- a/prefs.php
+++ b/prefs.php
@@ -26,8 +26,7 @@
header('Content-Type: text/html; charset=utf-8');
?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html>
<html>
<head>
<title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
diff --git a/register.php b/register.php
index 1667d40ce..6aa3c4f12 100644
--- a/register.php
+++ b/register.php
@@ -89,7 +89,7 @@
return;
}
?>
-
+<!DOCTYPE html>
<html>
<head>
<title>Create new account</title>
diff --git a/update.php b/update.php
index 434162a1b..21aa09d01 100755
--- a/update.php
+++ b/update.php
@@ -56,7 +56,9 @@
}
if (count($options) == 0 && !defined('STDIN')) {
- ?> <html>
+ ?>
+ <!DOCTYPE html>
+ <html>
<head>
<title>Tiny Tiny RSS data update script.</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">