mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
0984c7ef34
Some installations seem to support localhost:port for 1st parameter of mysqli_connect(), others will only support the official parameters with port towards the end. This fix tries them both - first the official one, then the localhost:port one. Also, there were a lot of mysqli_connect()'s inside Admin mods. These now also use the central Database class.
29 lines
1.2 KiB
PHP
29 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");
|
|
|
|
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."");
|
|
?>
|