diff --git a/www/images/log/ms_de_v4.jpg b/www/images/log/ms_de_v4.jpg new file mode 100644 index 0000000..d25a1ae Binary files /dev/null and b/www/images/log/ms_de_v4.jpg differ diff --git a/www/protected/controllers/HighscoresController.php b/www/protected/controllers/HighscoresController.php index 186d5f4..681e759 100644 --- a/www/protected/controllers/HighscoresController.php +++ b/www/protected/controllers/HighscoresController.php @@ -75,7 +75,7 @@ class HighscoresController extends MSController //TODO-MS Test online if it all } else { - $this->actionListEntries(intval(mysql_real_escape_string($_GET["gameid"]))); + $this->actionListEntries(intval(htmlspecialchars($_GET["gameid"]))); return; } } @@ -91,7 +91,7 @@ class HighscoresController extends MSController //TODO-MS Test online if it all } else { - $start = intval(mysql_real_escape_string($_GET["start"])) - 1; + $start = intval(htmlspecialchars($_GET["start"])) - 1; if ($start < 0) { $start = 0; @@ -100,7 +100,7 @@ class HighscoresController extends MSController //TODO-MS Test online if it all if (isset($_GET["highlight"])) { - $highlight= intval(mysql_real_escape_string($_GET["highlight"])); + $highlight= intval(htmlspecialchars($_GET["highlight"])); } else $highlight = 0; diff --git a/www/protected/yiic.php b/www/protected/yiic.php index 8dfd10a..e9be4c7 100644 --- a/www/protected/yiic.php +++ b/www/protected/yiic.php @@ -9,4 +9,5 @@ require_once($yiic); // TODO-MS SharkSim (OLD DATE !) -> MS.de // TODO-MS BefunGen -> MS.de // TODO-MS jClipCorn -> MS.de -// TODO-MS jQCCounter (OLD DATE !) -> MS.de \ No newline at end of file +// TODO-MS jQCCounter (OLD DATE !) -> MS.de +// TODO-MS ExtendedGitGraph -> MS.de \ No newline at end of file