diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-18 06:08:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-18 06:08:04 +0000 |
commit | 775153089d918b0c85adaad2ed8e454aed2fb204 (patch) | |
tree | 95a9be6100bc920a33894424eda72a3695bf36da | |
parent | 8050af67b3a7e279f8ecb8641861b004ad66f438 (diff) | |
download | brdo-775153089d918b0c85adaad2ed8e454aed2fb204.tar.gz brdo-775153089d918b0c85adaad2ed8e454aed2fb204.tar.bz2 |
- Small change to the wording of the 'note'.
-rw-r--r-- | CHANGELOG.txt | 6 | ||||
-rw-r--r-- | modules/upload.module | 2 | ||||
-rw-r--r-- | modules/upload/upload.module | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ac11323d0..d75bc2bcc 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -36,8 +36,7 @@ Drupal x.x.x, xxxx-xx-xx - accessibility: * improved the accessibility of the archive module's calendar. * improved form handling and error reporting. - * added HTTP redirects to prevent submitting twice when refreshing right - after a form submission + * added HTTP redirects to prevent submitting twice when refreshing right after a form submission. - refactored 403 (forbidden) handling and added support for custom 403 pages. - documentation: * added PHPDoc/Doxygen comments. @@ -46,8 +45,7 @@ Drupal x.x.x, xxxx-xx-xx * expanded the embedded PHP-code feature so it can be used everywhere * added support for role-dependant filtering, through input formats - UI translation: - * managing translations is now completely done through the administration - interface + * managing translations is now completely done through the administration interface * added support for importing/exporting gettext .po files Drupal 4.4.2, 2004-07-04 diff --git a/modules/upload.module b/modules/upload.module index a2d889855..4c862f84e 100644 --- a/modules/upload.module +++ b/modules/upload.module @@ -291,7 +291,7 @@ function upload_form($node) { } if (count($node->files)) { - $output = form_item('', theme('table', $header, $rows), t('Note: Changes made to the attachments list are not permanent until you save this node.')); + $output = form_item('', theme('table', $header, $rows), t('Note: changes made to the attachments are not permanent until you save this post.')); } $output .= form_file(t('Attach new file'), "upload", 40); $output .= form_button(t('Attach'), 'fileop'); diff --git a/modules/upload/upload.module b/modules/upload/upload.module index a2d889855..4c862f84e 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -291,7 +291,7 @@ function upload_form($node) { } if (count($node->files)) { - $output = form_item('', theme('table', $header, $rows), t('Note: Changes made to the attachments list are not permanent until you save this node.')); + $output = form_item('', theme('table', $header, $rows), t('Note: changes made to the attachments are not permanent until you save this post.')); } $output .= form_file(t('Attach new file'), "upload", 40); $output .= form_button(t('Attach'), 'fileop'); |