diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2011-09-20 21:44:23 +0200 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2011-09-20 21:44:23 +0200 |
commit | 8fffc62bc13a2429baab9714085c492490903e56 (patch) | |
tree | 4a6a53984030873101e94193dac81a997513d9d4 /www | |
parent | 0f14457e5f24a78de02af90b535b9a1d80ce6281 (diff) | |
parent | b04202b91ae74c1a36b3a876226b651d0fd844ed (diff) | |
download | cacert-devel-8fffc62bc13a2429baab9714085c492490903e56.tar.gz cacert-devel-8fffc62bc13a2429baab9714085c492490903e56.tar.xz cacert-devel-8fffc62bc13a2429baab9714085c492490903e56.zip |
Merge branch 'bug-910' into release
Diffstat (limited to 'www')
-rw-r--r-- | www/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www/index.php b/www/index.php index a4c50fc..a139c4a 100644 --- a/www/index.php +++ b/www/index.php @@ -640,6 +640,13 @@ header('Location: '.$newUrl, true, 301); // 301 = Permanently Moved } + if ($id == 8) + { + $protocol = $_SERVER['HTTPS'] ? 'https' : 'http'; + $newUrl = $protocol . '://wiki.cacert.org/Board'; + header('Location: '.$newUrl, true, 301); // 301 = Permanently Moved + } + showheader(_("Welcome to CAcert.org")); includeit($id); showfooter(); |