mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Fix for bug #463565.
This commit is contained in:
parent
96e4fc63e8
commit
defec5f96b
@ -92,7 +92,7 @@
|
||||
);
|
||||
$p->set_var($var);
|
||||
|
||||
if (!$total)
|
||||
if (!count($account_info) || !$total)
|
||||
{
|
||||
$p->set_var('message',lang('No matchs found'));
|
||||
$p->parse('rows','row_empty',True);
|
||||
@ -235,7 +235,7 @@
|
||||
$p->set_var('input_search',lang('Search') . ' <input type="text" name="query">');
|
||||
}
|
||||
|
||||
if (!$total)
|
||||
if (!count($account_info) || !$total)
|
||||
{
|
||||
$p->set_var('message',lang('No matchs found'));
|
||||
$p->parse('rows','row_empty',True);
|
||||
|
Loading…
Reference in New Issue
Block a user