27 lines
984 B
PHP
27 lines
984 B
PHP
|
<? /*
|
||
|
Copyright (C) 2004-2006 by Duane Groth <duane_at_CAcert_dot_org>
|
||
|
|
||
|
This file is part of CAcert.
|
||
|
|
||
|
CAcert has been released under a CAcert Source license
|
||
|
which can be found included with these source files or can
|
||
|
be downloaded from the internet from the following address:
|
||
|
http://www.cacert.org/src-lic.php
|
||
|
|
||
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||
|
PARTICULAR PURPOSE. See the License for more details.
|
||
|
*/
|
||
|
|
||
|
// This is the big power-off switch. It switches off all certificate issueing and assuring functions of the website.
|
||
|
// Revocation services are NOT affected, and will continue to work.
|
||
|
|
||
|
if(0)
|
||
|
{ ?>
|
||
|
<font color="#ff0000"><? printf(_("This function is currently disabled. Please visit %s for more information."),
|
||
|
"<a target='_blank' href='http://wiki.cacert.org/wiki/ClientSecurity'>http://wiki.cacert.org/wiki/ClientSecurity</a>")?></font>
|
||
|
<?
|
||
|
exit;
|
||
|
}
|
||
|
?>
|