bootstrapping finish
This commit is contained in:
parent
e050c0dc7f
commit
62762a9368
|
@ -1,33 +1,35 @@
|
|||
<?php
|
||||
include "../../camp2011/includes/config.php";
|
||||
include "../../camp2011/includes/error_handler.php";
|
||||
include "../../camp2011/includes/config_db.php";
|
||||
require_once ('bootstrap.php');
|
||||
|
||||
if(!isset($_SESSION))
|
||||
include "config/config.php";
|
||||
include "includes/error_handler.php";
|
||||
include "config/config_db.php";
|
||||
|
||||
if (!isset ($_SESSION))
|
||||
session_start();
|
||||
|
||||
include "../../camp2011/includes/secure.php";
|
||||
include "includes/secure.php";
|
||||
|
||||
// Parameter check
|
||||
if(!isset($_GET["UID"]))
|
||||
// Parameter check
|
||||
if (!isset ($_GET["UID"]))
|
||||
$_GET["UID"] = "-1";
|
||||
|
||||
$SQL = "SELECT * FROM `UserPicture` WHERE `UID`='" . $_GET["UID"] . "'";
|
||||
$res = mysql_query($SQL, $con);
|
||||
$SQL = "SELECT * FROM `UserPicture` WHERE `UID`='" . $_GET["UID"] . "'";
|
||||
$res = mysql_query($SQL, $con);
|
||||
|
||||
if(mysql_num_rows($res) == 1) {
|
||||
if (mysql_num_rows($res) == 1) {
|
||||
// genuegend rechte
|
||||
if(!isset($_SESSION['UID']) || $_SESSION['UID'] == -1) {
|
||||
if (!isset ($_SESSION['UID']) || $_SESSION['UID'] == -1) {
|
||||
header("HTTP/1.0 403 Forbidden");
|
||||
die("403 Forbidden");
|
||||
}
|
||||
|
||||
// ist das bild sichtbar?
|
||||
if((mysql_result($res, 0, "show") == "N") AND ($_SESSION['UID']!=$_GET["UID"]) AND ($_SESSION['CVS'][ "admin/UserPicture.php" ] == "N")) {
|
||||
if ((mysql_result($res, 0, "show") == "N") AND ($_SESSION['UID'] != $_GET["UID"]) AND ($_SESSION['CVS']["admin/UserPicture.php"] == "N")) {
|
||||
$SQL = "SELECT * FROM `UserPicture` WHERE `UID`='-1'";
|
||||
$res = mysql_query($SQL, $con);
|
||||
|
||||
if(mysql_num_rows($res) != 1) {
|
||||
if (mysql_num_rows($res) != 1) {
|
||||
header("HTTP/1.0 404 Not Found");
|
||||
die("404 Not Found");
|
||||
}
|
||||
|
@ -44,8 +46,8 @@
|
|||
header("Cache-request-directive: min-fresh = 120");
|
||||
header("Cache-request-directive: max-age = 360");
|
||||
echo $bild;
|
||||
} else {
|
||||
} else {
|
||||
header("HTTP/1.0 404 Not Found");
|
||||
die( "404 Not Found");
|
||||
}
|
||||
die("404 Not Found");
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -6,7 +6,7 @@ $header = "DECT send call";
|
|||
include ("includes/header.php");
|
||||
|
||||
include ("config/config_IAX.php");
|
||||
//include ("../../../camp2011/includes/funktion_modem.php");
|
||||
//include ("includes/funktion_modem.php");
|
||||
include ("includes/funktion_cron.php");
|
||||
|
||||
if (!isset ($_GET["dial"]))
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
<?php
|
||||
$title = "Index";
|
||||
$header = "Lageplan";
|
||||
include "../../camp2011/includes/header.php";
|
||||
require_once ('bootstrap.php');
|
||||
|
||||
echo "<p>" . Get_Text("lageplan_text1") . "</p>";
|
||||
echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />";
|
||||
$title = "Index";
|
||||
$header = "Lageplan";
|
||||
include "includes/header.php";
|
||||
|
||||
include "../../camp2011/includes/footer.php";
|
||||
echo "<p>" . Get_Text("lageplan_text1") . "</p>";
|
||||
echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />";
|
||||
|
||||
include "includes/footer.php";
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue