mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +01:00
Fix warning "Missing argument 1 for mail_sieve::get_rows() in sieve"
This commit is contained in:
parent
191a3e9972
commit
e1a5ac7ffa
@ -1055,16 +1055,13 @@ class mail_sieve
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Get the data for iterating the rows on rules list grid
|
* Get the data for iterating the rows on rules list grid
|
||||||
* @param {array} $rows Array of rows
|
|
||||||
* @param {array} $readonlys Array of readonlys contents
|
|
||||||
*
|
*
|
||||||
* @return {boolean|array} Array of rows | false if failed
|
* @return {boolean|array} Array of rows | false if failed
|
||||||
*/
|
*/
|
||||||
function get_rows(&$rows)
|
function get_rows()
|
||||||
{
|
{
|
||||||
$rows = array();
|
$rows = array();
|
||||||
$this->getRules(null); /* ADDED BY GHORTH */
|
$this->getRules(null);
|
||||||
//$this->saveSessionData();
|
|
||||||
|
|
||||||
if (is_array($this->rules) && !empty($this->rules) )
|
if (is_array($this->rules) && !empty($this->rules) )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user