diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-01-18 02:33:29 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-01-18 02:33:29 +0000 |
commit | cc7ce782227ab1d12bebc52fe1628681a2178eff (patch) | |
tree | 853a02e7d93aeed731064a65b1f6c1df15ac5b71 /sopa | |
parent | 1b0177fcc0b1f1018084df4fe6f03d552fb412c3 (diff) | |
download | www-cc7ce782227ab1d12bebc52fe1628681a2178eff.tar www-cc7ce782227ab1d12bebc52fe1628681a2178eff.tar.gz www-cc7ce782227ab1d12bebc52fe1628681a2178eff.tar.bz2 www-cc7ce782227ab1d12bebc52fe1628681a2178eff.tar.xz www-cc7ce782227ab1d12bebc52fe1628681a2178eff.zip |
fix headers
Diffstat (limited to 'sopa')
-rw-r--r-- | sopa/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sopa/index.php b/sopa/index.php index b7147f6c6..12460b9ae 100644 --- a/sopa/index.php +++ b/sopa/index.php @@ -11,7 +11,7 @@ header('HTTP/1.1 503 Service Temporarily Unavailable'); header('Status: 503 Service Temporarily Unavailable'); -header('Retry-After: 7200'); +header('Retry-After: Thu, 19 Jan 2012 04:00:00 GMT'); $_t = array( 'en' => array( @@ -50,6 +50,9 @@ $_t = array( ) ); +if (!isset($locale)) + $locale = 'en'; + $_t = i18n::get_strings($_t, $locale, $i18n_fallback_rules); ?> @@ -57,6 +60,7 @@ $_t = i18n::get_strings($_t, $locale, $i18n_fallback_rules); <head> <meta charset="utf-8"> <title><?php echo $_t['title']; ?></title> + <meta name="robots" contents="noindex,nofollow,nosnippet"> <style type="text/css" media="all"> html, body { |