developer/web/install/update_440-500.php
2015-04-19 10:12:25 +02:00

146 lines
3.4 KiB
PHP

<?php
/**
* File: update_430-440.php.
* Author: Ulrich Block
* Date: 02.02.14
* Contact: <ulrich.block@easy-wi.com>
*
* This file is part of Easy-WI.
*
* Easy-WI is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Easy-WI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Easy-WI. If not, see <http://www.gnu.org/licenses/>.
*
* Diese Datei ist Teil von Easy-WI.
*
* Easy-WI ist Freie Software: Sie koennen es unter den Bedingungen
* der GNU General Public License, wie von der Free Software Foundation,
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder spaeteren
* veroeffentlichten Version, weiterverbreiten und/oder modifizieren.
*
* Easy-WI wird in der Hoffnung, dass es nuetzlich sein wird, aber
* OHNE JEDE GEWAEHELEISTUNG, bereitgestellt; sogar ohne die implizite
* Gewaehrleistung der MARKTFAEHIGKEIT oder EIGNUNG FUER EINEN BESTIMMTEN ZWECK.
* Siehe die GNU General Public License fuer weitere Details.
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
* Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
*/
if (isset($include) and $include == true) {
$query = $sql->prepare("INSERT INTO `easywi_version` (`version`,`de`,`en`) VALUES
('5.40','<div align=\"right\">10.05.2014</div>
<b>Änderungen:</b><br/>
<ul>
<li>Generell:
<ul>
<li></li>
</ul></li>
<li>CMS:
<ul>
<li</li>
</ul></li>
<li>Gameserver:
<ul>
<li</li>
</ul></li>
<li>MySQL:
<ul>
<li></li>
</ul></li>
<li>Root:
<ul>
<li></li>
</ul></li>
<li>Voiceserver:
<ul>
<li></li>
</ul></li>
<li>Webspace:
<ul>
<li></li>
</ul></li>
</ul>
<br/><br/>
<b>Bugfixes:</b><br/>
<ul>
<li></li>
</ul>
','<div align=\"right\">05.10.2014</div>
<b>Changes:</b><br/>
<ul>
<li>General:
<ul>
<li></li>
</ul></li>
<li>CMS:
<ul>
<li></li>
</ul>
<li>Gameserver:
<ul>
<li></li>
</ul></li>
<li>MySQL:
<ul>
<li></li>
</ul></li>
<li>Rootserver:
<ul>
<li></li>
</ul></li>
<li>User:
<ul>
<li></li>
</ul></li>
<li>Voiceserver:
<ul>
<li></li>
</ul></li>
<li>Webspace:
<ul>
<li></li>
</ul></li>
</ul>
<br/><br/>
<b>Bugfixes:</b><br/>
<ul>
<li></li>
</ul>
')");
$query->execute();
$response->add('Action: insert_easywi_version done: ');
$query->closecursor();
if (!isset($displayToUser)) {
$displayToUser = '';
}
$response->add('Adding tables if needed.');
include(EASYWIDIR . '/stuff/methods/tables_add.php');
$query = $sql->prepare("DROP TABLE IF EXISTS `voice_stats_settings`");
$query->execute();
$response->add('Repairing tables if needed.');
include(EASYWIDIR . '/stuff/methods/tables_repair.php');
$query = $sql->prepare("UPDATE `servertypes` SET `useQueryPort`=2 WHERE `gameq` IN ('armedassault2', 'armedassault2oa', 'armedassault3', 'bf2', 'cube2', 'mta', 'ut', 'ut2004', 'ut3')");
$query->execute();
$query = $sql->prepare("UPDATE `servertypes` SET `cmd`='./%binary% -n' WHERE `shorten`='mtasa' AND `cmd`='./%binary%'");
$query->execute();
} else {
echo "Error: this file needs to be included by the updater!<br />";
}