diff options
author | Martin Gummi <martin.gummi@gmx.net> | 2013-06-19 00:42:02 +0200 |
---|---|---|
committer | Martin Gummi <martin.gummi@gmx.net> | 2013-06-19 00:42:02 +0200 |
commit | 88236d82b81c9e742a24638922769e7f07c3bff8 (patch) | |
tree | c72f1c563f0f8dbde13e02279e2e6f38e7f28958 /pages | |
parent | ef6fa684e0c1ac2155036cc2981c65482de92bfc (diff) | |
download | cacert-devel-88236d82b81c9e742a24638922769e7f07c3bff8.tar.gz cacert-devel-88236d82b81c9e742a24638922769e7f07c3bff8.tar.xz cacert-devel-88236d82b81c9e742a24638922769e7f07c3bff8.zip |
bug-1102: Redirect to CertificationPracticeStatement.php
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index/10.php | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/pages/index/10.php b/pages/index/10.php index 9e09bb8..838d0b2 100644 --- a/pages/index/10.php +++ b/pages/index/10.php @@ -15,10 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ ?> -<p style="background-color: #FF8080; font-size: 150%"> -<? -printf(_('This page has been moved to the %spolicy directory%s. Please update '. - 'your bookmarks and report any broken links.'), - '<a href="/policy/PrivacyPolicy.html">', '</a>'); -?> -</p> +<?php + header('HTTP/1.0 301 Moved Permanently'); + header('Location: http://www.cacert.org/policy/CertificationPracticeStatement.php'); + exit(); |