diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-27 15:53:40 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-27 15:53:40 +0000 |
| commit | a95ecce4bfab97a5dc37195b7167cf098a5c1880 (patch) | |
| tree | e2a4a675f655c91507ecfe5bdaa7ea2c91a86b71 | |
| parent | 1b7746ec9d6aa7deaeef85caec58770f71bce3d9 (diff) | |
- Don't use reserved word 'class' (to prevent IE errors)
git-svn-id: https://svn.roundcube.net/trunk@4884 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/addressbook/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/addressbook/func.inc b/roundcubemail/program/steps/addressbook/func.inc index f7f3dbfe9..2cb2b8a93 100644 --- a/roundcubemail/program/steps/addressbook/func.inc +++ b/roundcubemail/program/steps/addressbook/func.inc @@ -184,8 +184,8 @@ function rcmail_directory_list($attrib) $class_name .= ' selected'; if ($source['readonly']) $class_name .= ' readonly'; - if ($source['class']) - $class_name .= ' ' . $source['class']; + if ($source['class_name']) + $class_name .= ' ' . $source['class_name']; $out .= sprintf($line_templ, html_identifier($id), |
