[phpwebapp-commits] CVS: top10/templates/edit_project edit_project.php,1.4,1.5 edit_project.db,1.3,1
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-01-05 14:42:03
|
Update of /cvsroot/phpwebapp/top10/templates/edit_project In directory sc8-pr-cvs1:/tmp/cvs-serv31213/templates/edit_project Modified Files: edit_project.php edit_project.db Log Message: Index: edit_project.php =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/edit_project/edit_project.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** edit_project.php 25 Dec 2003 15:35:46 -0000 1.4 --- edit_project.php 5 Jan 2004 14:42:00 -0000 1.5 *************** *** 114,120 **** //insert in DB a request with the same id as above - $time = time(); $ip = $_SERVER["REMOTE_ADDR"]; ! $params = compact("request_id", "time", "ip", "username", "proj_id"); WebApp::execDBCmd("insert_request", $params); --- 114,119 ---- //insert in DB a request with the same id as above $ip = $_SERVER["REMOTE_ADDR"]; ! $params = compact("request_id", "ip", "username", "proj_id"); WebApp::execDBCmd("insert_request", $params); Index: edit_project.db =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/edit_project/edit_project.db,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** edit_project.db 25 Dec 2003 15:35:46 -0000 1.3 --- edit_project.db 5 Jan 2004 14:42:00 -0000 1.4 *************** *** 74,78 **** SET request_id = '{{request_id}}', ! time = '{{time}}', username = '{{username}}', ip = '{{ip}}', --- 74,78 ---- SET request_id = '{{request_id}}', ! time = NOW(), username = '{{username}}', ip = '{{ip}}', |