From 2cafb3fbc3adc20f0bcacb785b797b595103b72f Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 29 Apr 2006 05:18:55 +0000 Subject: [PATCH] fix for bug [ 1477553 ] contact selector does not keep category, patch from StadtFRLG --- phpgwapi/addressbook.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/addressbook.php b/phpgwapi/addressbook.php index ec1a1cc82a..3809d3b3e1 100644 --- a/phpgwapi/addressbook.php +++ b/phpgwapi/addressbook.php @@ -132,9 +132,9 @@ } //------------------------------------------- nextmatch -------------------------------------------- $GLOBALS['egw']->template->set_var('left',$GLOBALS['egw']->nextmatchs->left( - $link,$start,$contacts->total_records,'&'.explode('&',$common_vars))); + $link,$start,$contacts->total_records,$GLOBALS['egw']->nextmatchs->extras_to_string($common_vars))); $GLOBALS['egw']->template->set_var('right',$GLOBALS['egw']->nextmatchs->right( - $link,$start,$contacts->total_records,'&'.explode('&',$common_vars))); + $link,$start,$contacts->total_records,$GLOBALS['egw']->nextmatchs->extras_to_string($common_vars))); foreach(array( 'n_given' => lang('Firstname'), 'n_family' => lang('Lastname'),