Changeset c6c99c8 in github
- Timestamp:
- Aug 4, 2011 5:01:36 AM (23 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- d0de4eb
- Parents:
- d961511
- Location:
- program
- Files:
-
- 3 edited
-
localization/en_US/messages.inc (modified) (1 diff)
-
steps/settings/edit_folder.inc (modified) (1 diff)
-
steps/settings/save_folder.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/localization/en_US/messages.inc
r2c77f553 rc6c99c8 151 151 $messages['invalidimageformat'] = 'Not a valid image format.'; 152 152 $messages['mispellingsfound'] = 'Spelling errors detected in the message.'; 153 $messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; 153 154 154 155 ?> -
program/steps/settings/edit_folder.inc
r363514e rc6c99c8 256 256 } 257 257 258 if ($content) { 258 if ($content) { 259 259 $out .= html::tag('fieldset', null, html::tag('legend', null, Q($tab['name'])) . $content) ."\n"; 260 260 } -
program/steps/settings/save_folder.inc
rf6eb1e2 rc6c99c8 53 53 break; 54 54 } 55 } 56 } 57 58 // Check access rights to the parent folder 59 if (!$error && strlen($path)) { 60 $parent_opts = $RCMAIL->imap->mailbox_info($path); 61 if ($parent_opts['namespace'] != 'personal' 62 && (empty($parent_opts['rights']) || !preg_match('/[ck]/', implode($parent_opts))) 63 ) { 64 $error = rcube_label('parentnotwritable'); 55 65 } 56 66 }
Note: See TracChangeset
for help on using the changeset viewer.
