diff options
author | alecpl <alec@alec.pl> | 2011-06-27 15:53:40 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-06-27 15:53:40 +0000 |
commit | 44143c5847bac29c7d85406d45487f0b53fa9ba3 (patch) | |
tree | fc63b5c4059157aaebf48175154183ce3fef76e2 /program/steps/addressbook/func.inc | |
parent | 15d76275983c216ac601e0c0102a1019e68bdc43 (diff) |
- Don't use reserved word 'class' (to prevent IE errors)
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 f7f3dbfe9..2cb2b8a93 100644 --- a/program/steps/addressbook/func.inc +++ b/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), |