diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-06-25 23:48:47 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-06-25 23:48:47 +0200 |
commit | 9a81215af81d5c204b98e4771d116cae66c95bb6 (patch) | |
tree | 0111006d390aea3334820a45f7dee1efaaf24927 /pages | |
parent | ae9db2e099502c9b6d12c40321ea850ce0cf9b55 (diff) | |
parent | 112033ca364acca4e6ead25abd3711c719bdb0dc (diff) | |
download | cacert-devel-9a81215af81d5c204b98e4771d116cae66c95bb6.tar.gz cacert-devel-9a81215af81d5c204b98e4771d116cae66c95bb6.tar.xz cacert-devel-9a81215af81d5c204b98e4771d116cae66c95bb6.zip |
Merge branch 'bug-1102' into release
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index/10.php | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/pages/index/10.php b/pages/index/10.php index 9e09bb8..7280e09 100644 --- a/pages/index/10.php +++ b/pages/index/10.php @@ -14,11 +14,8 @@ You should have received a copy of the GNU General Public License 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> +*/ + + header('HTTP/1.0 301 Moved Permanently'); + header('Location: http://www.cacert.org/policy/CertificationPracticeStatement.php'); + exit(); |