Initial commit
This commit is contained in:
23
lotgd-web/lotgd/petition.php
Executable file
23
lotgd-web/lotgd/petition.php
Executable file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
// addnews ready
|
||||
// translator ready
|
||||
// mail ready
|
||||
define("ALLOW_ANONYMOUS",true);
|
||||
define("OVERRIDE_FORCED_NAV",true);
|
||||
require_once("common.php");
|
||||
require_once("lib/systemmail.php");
|
||||
require_once("lib/output_array.php");
|
||||
require_once("lib/http.php");
|
||||
require_once("lib/stripslashes_deep.php");
|
||||
$op = httpget('op');
|
||||
|
||||
switch ($op) {
|
||||
case "primer": case "faq": case "faq1": case "faq2": case "faq3":
|
||||
require("lib/petition/petition_$op.php");
|
||||
break;
|
||||
default:
|
||||
require("lib/petition/petition_default.php");
|
||||
break;
|
||||
}
|
||||
popup_footer();
|
||||
?>
|
Reference in New Issue
Block a user