1
0
mirror of https://github.com/php/web-php.git synced 2026-04-29 09:53:12 +02:00

Those @cvs.php.net addrs never actually worked. Not sure why we didn't

fix this before.
This commit is contained in:
Rasmus Lerdorf
2000-07-24 01:13:19 +00:00
parent ccd7af01f4
commit 595d30fa82
+1 -1
View File
@@ -391,7 +391,7 @@ if (isset($cmd) && $cmd == "Send bug report") {
$ts=date("Y-m-d H:i:s");
mysql_query("UPDATE bugdb set status='$estatus', bug_type='$ebug_type', assign='$eassign', comments='$comments', ts2='$ts', dev_id='$user' where id=$id");
if (!empty($ncomment)) {
mysql_query("INSERT INTO bugdb_comments (bug, email, ts, comment) VALUES ($id,'".$user."@cvs.php.net','$ts','$ncomment')");
mysql_query("INSERT INTO bugdb_comments (bug, email, ts, comment) VALUES ($id,'".$user."@php.net','$ts','$ncomment')");
}
$ok=1;
}