-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php | ||
|
||
/** | ||
* File: update_616-620.php. | ||
* Author: Ulrich Block | ||
* Date: 19.07.20 | ||
* Time: 18:38 | ||
* Contact: <[email protected]> | ||
* | ||
* 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 | ||
('6.2.2','<div align=\"right\">03.01.2023</div> | ||
<b>Änderungen:</b><br/> | ||
<ul> | ||
<li>General | ||
<ul> | ||
</ul></li></ul> | ||
<b>Bugfixes:</b> | ||
<ul> | ||
<li>Updater Fixed</li> | ||
</ul> | ||
<b>Zukunft:</b> | ||
<li>Vorbereitung um die V-Server / Netzwerkmodule zu entfernen</li> | ||
</ul>','<div align=\"right\">28.07.2020</div> | ||
<b>Changes:</b><br/> | ||
<ul> | ||
<li>General | ||
<ul> | ||
</ul></li></ul> | ||
<b>Bugfixes:</b> | ||
<ul> | ||
<li>Updater Fixed</li> | ||
</ul> | ||
<b>Future:</b> | ||
<li>preparation to remove V-Server / Network modules</li> | ||
</ul>')"); | ||
$query->execute(); | ||
$response->add('Action: insert_easywi_version done: '); | ||
|
||
} else { | ||
echo "Error: this file needs to be included by the updater!<br />"; | ||
} |