Compatibility fixes for Roundcube 1.7
This commit is contained in:
parent
9c69920ccb
commit
f41dc94eae
2 changed files with 4 additions and 4 deletions
|
@ -235,7 +235,7 @@ class carddav_contacts extends rcube_addressbook
|
||||||
*
|
*
|
||||||
* @param mixed Search params to use in listing method, obtained by get_search_set()
|
* @param mixed Search params to use in listing method, obtained by get_search_set()
|
||||||
*/
|
*/
|
||||||
public function set_search_set($filter)
|
public function set_search_set($filter): void
|
||||||
{
|
{
|
||||||
$this->filter = $filter;
|
$this->filter = $filter;
|
||||||
}
|
}
|
||||||
|
@ -253,7 +253,7 @@ class carddav_contacts extends rcube_addressbook
|
||||||
/**
|
/**
|
||||||
* Reset saved results and search parameters
|
* Reset saved results and search parameters
|
||||||
*/
|
*/
|
||||||
public function reset()
|
public function reset(): void
|
||||||
{
|
{
|
||||||
$this->result = null;
|
$this->result = null;
|
||||||
$this->filter = null;
|
$this->filter = null;
|
||||||
|
|
|
@ -288,7 +288,7 @@ class kolab_contacts extends rcube_addressbook
|
||||||
*
|
*
|
||||||
* @param mixed Search params to use in listing method, obtained by get_search_set()
|
* @param mixed Search params to use in listing method, obtained by get_search_set()
|
||||||
*/
|
*/
|
||||||
public function set_search_set($filter)
|
public function set_search_set($filter): void
|
||||||
{
|
{
|
||||||
$this->filter = $filter;
|
$this->filter = $filter;
|
||||||
}
|
}
|
||||||
|
@ -306,7 +306,7 @@ class kolab_contacts extends rcube_addressbook
|
||||||
/**
|
/**
|
||||||
* Reset saved results and search parameters
|
* Reset saved results and search parameters
|
||||||
*/
|
*/
|
||||||
public function reset()
|
public function reset(): void
|
||||||
{
|
{
|
||||||
$this->result = null;
|
$this->result = null;
|
||||||
$this->filter = null;
|
$this->filter = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue