<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html><body>
<p>Package: roundcube-core<br />Version: 0.7.2-9+deb7u4<br />Debian version: 7.11<br /><br /><br />Dear Maintainer,<br /><br />In the file /usr/share/roundcube/program/include/rcube_message.php line 92 a parameter is missing in the call to the function rcmail_url().<br /><br />        $this->opt = array(<br />            'safe' => $this->is_safe,<br />            'prefer_html' => $this->app->config->get('prefer_html'),<br />            'get_url' => rcmail_url('get', array(<br />                '_mbox' => $this->imap->get_mailbox_name(), '_uid' => $uid), true)<br />        );<br /><br />Line 93 should look like this.<br /><br />                '_mbox' => $this->imap->get_mailbox_name(), '_uid' => $uid), null, true)</p>
<p><br />The rcmail_url() function in the main.inc file:</p>
<p>function rcmail_url($action, $p=array(), $task=null, $secure=false)<br />{<br />  $app = rcmail::get_instance();<br />  return $app->url((array)$p + array('_action' => $action, 'task' => $task), $secure);<br />}</p>
<p><span id="result_box" class="short_text"><span><br />With the bug, $task is set to true.</span></span></p>
<p>Regards,<br /><br />Alberto</p>
<div> </div>
</body></html>