-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #305 from Schrolli91/beta
new release
- Loading branch information
Showing
36 changed files
with
422 additions
and
308 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,26 @@ | ||
# Changelog | ||
|
||
|
||
#### __[v2.2.1]__ - 19.09.2017 | ||
##### Added | ||
- Neues Service Script | ||
- Eigene Message fpr jeden Typ im Telegram Plugin | ||
|
||
##### Changed | ||
- Name der csv Dateien um überschreiben bei Update zu vermeiden | ||
- Description Liste kann nun zusätzlich Einträge für jede Subric enthalten | ||
- RegEX verbietet nun grundsätzlich alles - Es muss explizit zugelassen werden | ||
|
||
##### Deprecated | ||
##### Removed | ||
##### Fixed | ||
- Bug im SMS77 Plugin | ||
|
||
##### Security | ||
|
||
|
||
---------------------------- | ||
|
||
|
||
Zum schreiben des Changelog's siehe: | ||
http://keepachangelog.com/de/1.0.0/ |
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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,57 @@ | ||
|
||
<?php | ||
session_start(); | ||
?> | ||
|
||
<?php | ||
if(($_SESSION["username"])!="admin") | ||
{ | ||
echo "Sie sind nicht berechtigt fuer diesen Bereich"; | ||
exit; | ||
} | ||
?> | ||
|
||
|
||
|
||
|
||
<?php | ||
@require_once("config.php"); | ||
$verbindung = mysqli_connect($dbhost, $dbuser , $dbpassword, $database) | ||
or die("Verbindung zur Datenbank konnte nicht hergestellt werden"); | ||
|
||
$username = $_POST["username"]; | ||
$passwort = $_POST["passwort"]; | ||
$passwort2 = $_POST["passwort2"]; | ||
|
||
if($passwort != $passwort2 OR $username == "" OR $passwort == "") | ||
{ | ||
echo "Eingabefehler. Bitte alle Felder korekt ausfüllen. <a href=\"eintragen.html\">Zurück</a>"; | ||
exit; | ||
} | ||
$passwort = md5($passwort); | ||
|
||
$result = mysqli_query($verbindung, "SELECT id FROM login WHERE username LIKE '$username'"); | ||
$menge = mysqli_num_rows($result); | ||
|
||
if($menge == 0) | ||
{ | ||
$eintrag = "INSERT INTO login (username, passwort) VALUES ('$username', '$passwort')"; | ||
$eintragen = mysqli_query($verbindung, $eintrag); | ||
|
||
if($eintragen == true) | ||
{ | ||
echo "Benutzername <b>$username</b> wurde erstellt. <a href=\"index.php\">Login</a>"; | ||
} | ||
else | ||
{ | ||
echo "Fehler beim Speichern des Benutzernames. <a href=\"eintragen.html\">Zurück</a>"; | ||
} | ||
|
||
|
||
} | ||
|
||
else | ||
{ | ||
echo "Benutzername schon vorhanden. <a href=\"eintragen.html\">Zurück</a>"; | ||
} | ||
?> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.