bootstrapping finish
This commit is contained in:
parent
e050c0dc7f
commit
62762a9368
|
@ -1,12 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
include "../../camp2011/includes/config.php";
|
require_once ('bootstrap.php');
|
||||||
include "../../camp2011/includes/error_handler.php";
|
|
||||||
include "../../camp2011/includes/config_db.php";
|
include "config/config.php";
|
||||||
|
include "includes/error_handler.php";
|
||||||
|
include "config/config_db.php";
|
||||||
|
|
||||||
if (!isset ($_SESSION))
|
if (!isset ($_SESSION))
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
include "../../camp2011/includes/secure.php";
|
include "includes/secure.php";
|
||||||
|
|
||||||
// Parameter check
|
// Parameter check
|
||||||
if (!isset ($_GET["UID"]))
|
if (!isset ($_GET["UID"]))
|
||||||
|
|
|
@ -6,7 +6,7 @@ $header = "DECT send call";
|
||||||
include ("includes/header.php");
|
include ("includes/header.php");
|
||||||
|
|
||||||
include ("config/config_IAX.php");
|
include ("config/config_IAX.php");
|
||||||
//include ("../../../camp2011/includes/funktion_modem.php");
|
//include ("includes/funktion_modem.php");
|
||||||
include ("includes/funktion_cron.php");
|
include ("includes/funktion_cron.php");
|
||||||
|
|
||||||
if (!isset ($_GET["dial"]))
|
if (!isset ($_GET["dial"]))
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
require_once ('bootstrap.php');
|
||||||
|
|
||||||
$title = "Index";
|
$title = "Index";
|
||||||
$header = "Lageplan";
|
$header = "Lageplan";
|
||||||
include "../../camp2011/includes/header.php";
|
include "includes/header.php";
|
||||||
|
|
||||||
echo "<p>" . Get_Text("lageplan_text1") . "</p>";
|
echo "<p>" . Get_Text("lageplan_text1") . "</p>";
|
||||||
echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />";
|
echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />";
|
||||||
|
|
||||||
include "../../camp2011/includes/footer.php";
|
include "includes/footer.php";
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue