diff options
author | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
commit | 4cf42fde05ff891f6961ba60dbb1c2e4c91c39c6 (patch) | |
tree | 75e1520d4dbf92a9b8c0ae9ab3136fa2623d4172 /program/steps/addressbook/edit.inc | |
parent | a71a97fa49fb1c7fbe5e042b2cf6239f7372acb4 (diff) |
Add support for read-only address book records
Diffstat (limited to 'program/steps/addressbook/edit.inc')
-rw-r--r-- | program/steps/addressbook/edit.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc index 5f8a4ec2c..abed2c566 100644 --- a/program/steps/addressbook/edit.inc +++ b/program/steps/addressbook/edit.inc @@ -36,8 +36,8 @@ if ($RCMAIL->action == 'edit') { $OUTPUT->set_env('cid', $record['ID']); } - // adding not allowed here - if ($CONTACTS->readonly) { + // editing not allowed here + if ($CONTACTS->readonly || $record['readonly']) { $OUTPUT->show_message('sourceisreadonly'); rcmail_overwrite_action('show'); return; |