[thirdparty-commits] russell: mantis/trunk r170 -	/mantis/trunk/core/custom_function_api.php
    SVN commits to the Digium third-party software repository 
    thirdparty-commits at lists.digium.com
       
    Thu Jun 10 09:47:39 CDT 2010
    
    
  
Author: russell
Date: Thu Jun 10 09:47:36 2010
New Revision: 170
URL: http://svnview.digium.com/svn/thirdparty?view=rev&rev=170
Log:
Remove karma score from IRC bot
Modified:
    mantis/trunk/core/custom_function_api.php
Modified: mantis/trunk/core/custom_function_api.php
URL: http://svnview.digium.com/svn/thirdparty/mantis/trunk/core/custom_function_api.php?view=diff&rev=170&r1=169&r2=170
==============================================================================
--- mantis/trunk/core/custom_function_api.php (original)
+++ mantis/trunk/core/custom_function_api.php Thu Jun 10 09:47:36 2010
@@ -135,7 +135,7 @@
  				if ($t_bug_data->handler_id > 0) {
  					$irc_string = $irc_string . "\n" . 'Assigned to: ' . user_get_name($t_bug_data->handler_id);
  				}
- 				$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id) . '  Karma: ' . karma_get_user_score($t_bug_data->reporter_id);
+ 				$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id);
  				$irc_string = $irc_string . "\n" . 'https://issues.asterisk.org/' . string_get_bug_view_url($p_issue_id);
 				if (($ircsock = fsockopen("udp://127.0.0.1", 15124, $errno, $errstr, 1))) {
 					fwrite($ircsock, $irc_string);
    
    
More information about the thirdparty-commits
mailing list