<html><body><div style="color:#000; background-color:#fff; font-family:lucida console, sans-serif;font-size:16px"><div style="" class="">
When a user (not an admin) Converted a Lead to an opportunity that was assigned to a group<br style="" class="">
and left it as is you get a white screen of death.<br style="" class="">
Turning on error reporting you get :Fatal error: Call to undefined 
function get_group_options() in C:\Program 
Files\vtigerCRM610\apache\htdocs\vtigerCRM\include\Webservices\Utils.php
 on line 87:</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: lucida console,sans-serif; background-color: transparent; font-style: normal;" class=""><br style="" class="">
</div>
<div style="" class="">
So no get_group_options ! I assume it was a function from an earlier version.<br style="" class="">
</div>
<div style="" class=""><br>
</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: lucida console,sans-serif; background-color: transparent; font-style: normal;" class="">A workaround I did is : I went to  apache\htdocs\vtigerCRM\ include\utils\ <a style="" class="" href="http://trac.vtiger.com/cgi-bin/trac.cgi/wiki/CommonUtils" rel="nofollow">CommonUtils?</a> . php where a lot of the functions<br style="" class="">
are declared and added this chunk of code in line 429:</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: lucida console,sans-serif; background-color: transparent; font-style: normal;" class=""><br style="" class="">
</div>
<div style="" class="">
<span style="font-style: italic;">function get_group_options() {<br style="" class="">
</span></div><span style="font-style: italic;">
</span><blockquote style="" class="">
<div style="" class=""><span style="font-style: italic;">
global $log;<br style="" class="">
$log->debug("Entering get_group_options() method ...");<br style="" class="">
global $adb, $noof_group_rows;<br style="" class="">
;<br style="" class="">
$sql = "select groupname,groupid from vtiger_groups";<br style="" class="">
$result = $adb->pquery($sql, array());<br style="" class="">
$noof_group_rows = $adb->num_rows($result);<br style="" class="">
$log->debug("Exiting get_group_options method ...");<br style="" class="">
return $result;<br style="" class=""></span>
</div>
</blockquote><span style="font-style: italic;">
</span><div style="" class=""><span style="font-style: italic;">
}</span></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: lucida console,sans-serif; background-color: transparent; font-style: italic;" class=""><span style="font-style: italic;"><br style="" class=""></span>
</div><span style="font-style: italic;">

</span><span>That fixed it.</span></div></body></html>