Browse Source

CS fixes

pull/73/merge
Aleksander Machniak 12 years ago
parent
commit
39a82a5d45
  1. 10
      program/js/app.js
  2. 6
      program/lib/Roundcube/rcube_addressbook.php

10
program/js/app.js

@ -2135,12 +2135,12 @@ function rcube_webmail()
this.clear_message_list = function()
{
this.env.messages = {};
this.last_selected = 0;
this.env.messages = {};
this.last_selected = 0;
this.show_contentframe(false);
if (this.message_list)
this.message_list.clear(true);
this.show_contentframe(false);
if (this.message_list)
this.message_list.clear(true);
};
// send remote request to load message list

6
program/lib/Roundcube/rcube_addressbook.php

@ -539,10 +539,10 @@ abstract class rcube_addressbook
// add email to a key to not skip contacts with the same name (#1488375)
if (!empty($contact['email'])) {
$key .= ':' . implode(':', (array)$contact['email']);
}
$key .= ':' . implode(':', (array)$contact['email']);
}
return $key;
return $key;
}
/**

Loading…
Cancel
Save