mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
39 lines
1.7 KiB
PHP
Executable File
39 lines
1.7 KiB
PHP
Executable File
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename renameVillage.php ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
if (!isset($_SESSION)) session_start();
|
|
if($_SESSION['access'] < 9) die("Access Denied: You are not Admin!");
|
|
include_once("../../config.php");
|
|
include_once("../../Database.php");
|
|
|
|
$GLOBALS["link"] = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
|
mysqli_select_db($GLOBALS["link"], SQL_DB);
|
|
|
|
$nameorig = $_POST['villagename'];
|
|
|
|
foreach ($_POST as $key => $value) {
|
|
$_POST[$key] = $database->escape($value);
|
|
}
|
|
|
|
$did = (int) $_POST['did'];
|
|
$name = $_POST['villagename'];
|
|
$session = (int) $_POST['admid'];
|
|
|
|
$sql = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE id = ".$session."");
|
|
$access = mysqli_fetch_array($sql);
|
|
$sessionaccess = $access['access'];
|
|
|
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
|
|
|
$sql = "UPDATE ".TB_PREFIX."vdata SET name = '$name' WHERE wref = $did";
|
|
mysqli_query($GLOBALS["link"], $sql);
|
|
|
|
header("Location: ../../../Admin/admin.php?p=village&did=".$did."&name=".$nameorig."");
|
|
?>
|