diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-11-16 14:39:51 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-11-16 14:39:51 +0100 |
commit | 07a641c79f1d6fa6b327d1752a6c2ab76b4e07f6 (patch) | |
tree | 5ba8f5564d3c8fe27f8bf77e8f22276c17cfdc66 /program/steps/addressbook/func.inc | |
parent | 2d62b6bff8a0525916d0193033403b33e99416ae (diff) |
Code cleanup - unused variables
Diffstat (limited to 'program/steps/addressbook/func.inc')
-rw-r--r-- | program/steps/addressbook/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index 2c22d5a47..008d20174 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -279,8 +279,8 @@ function rcmail_savedsearch_list($attrib) // Saved searches $sources = $RCMAIL->user->list_searches(rcube_user::SEARCH_ADDRESSBOOK); - foreach ($sources as $j => $source) { - $id = $source['id']; + foreach ($sources as $source) { + $id = $source['id']; $js_id = rcube::JQ($id); // set class name(s) |