Commit: 8a5ce16c355f89a13a2b477131cce916d4cdc0cd Author: Felipe Pena <felipe...@gmail.com> Wed, 12 Sep 2012 14:03:06 -0300 Parents: 4a031e576841b49ed7b7182e8aedd84a9b8e290d Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=8a5ce16c355f89a13a2b477131cce916d4cdc0cd Log: - Fix missing assignment Changed paths: M www/rpc.php Diff: diff --git a/www/rpc.php b/www/rpc.php index a4c3d1e..2c0e2a9 100644 --- a/www/rpc.php +++ b/www/rpc.php @@ -48,7 +48,7 @@ if (!empty($_POST['ncomment']) && !empty($_POST['user'])) { $from = "{$user}@php.net"; /* svn log comment */ - bugs_add_comment($bug_id, $from, $user, $ncomment, 'svn'); + $res = bugs_add_comment($bug_id, $from, $user, $ncomment, 'svn'); if ($res) { /* Close the bug report as requested if it is not already closed */ -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php