mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 08:34:33 +00:00
32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename renameVillage.php ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
#################################################################################
|
|
|
|
include_once("../../Account.php");
|
|
|
|
mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
|
mysqli_select_db(SQL_DB);
|
|
|
|
if (!isset($_SESSION)) session_start();
|
|
if($_SESSION['access'] < ADMIN) die("Access Denied: You are not Admin!");
|
|
|
|
$origname = $_POST['villagename'];
|
|
|
|
foreach ($_POST as $key => $value) {
|
|
$_POST[$key] = $database->escape($value);
|
|
}
|
|
|
|
$did = (int) $_POST['did'];
|
|
$name = $_POST['villagename'];
|
|
$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=".$origname."");
|
|
?>
|