Version 0.7

This commit is contained in:
nemunaire 2007-11-20 12:00:00 +01:00
commit c117da6d77
148 changed files with 1914 additions and 801 deletions

View file

@ -11,7 +11,7 @@ $pseudo = $donnees['pseudo'];
if (isset($_POST['description']) && $_POST['description'] !='' ) {
if (isset($_POST['page']) && $_POST['page'] !='' ) {
$temps = time();
mysql_query("INSERT INTO bug VALUES('', '$pseudo', '$temps', '".htmlspecialchars($_POST['page'])."', '".nl2br(htmlspecialchars($_POST['description']))."')");
mysql_query("INSERT INTO bug VALUES('', '$pseudo', '$temps', '".mysql_real_escape_string(htmlspecialchars($_POST['page']))."', '".mysql_real_escape_string(htmlspecialchars($_POST['description']))."')");
mysql_close();
@header("Location: rapport_bug.php?ok=1");
}