From: <il...@pr...> - 2004-08-02 12:39:37
|
Update of /cvsroot/meshdb/www/db2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31882 Modified Files: submit.php Log Message: Fixed missing last-updated-by IP string. Index: submit.php =================================================================== RCS file: /cvsroot/meshdb/www/db2/submit.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- submit.php 27 Jul 2004 08:09:33 -0000 1.10 +++ submit.php 2 Aug 2004 12:39:24 -0000 1.11 @@ -41,7 +41,8 @@ /* Take note of whether the remote host matches the last update. */ if ($notify_info["updatedip"] != $_SERVER["REMOTE_ADDR"]) - $ipchangedstring = "\nLast updated from different address: $updatedip\n"; + $ipchangedstring = "\nLast updated from different address: ". + $notify_info["updatedip"]."\n"; else $ipchangedstring = ""; |