summaryrefslogtreecommitdiff
path: root/modules/upload
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-02 14:41:37 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-02 14:41:37 +0000
commitee701b3336d04488122c13e142369e179a63be16 (patch)
tree158725be7c013a3c67d386facc89f34688d39096 /modules/upload
parent5e5a07f513ee793a8bbe5094895b4ebd5a1de8a2 (diff)
downloadbrdo-ee701b3336d04488122c13e142369e179a63be16.tar.gz
brdo-ee701b3336d04488122c13e142369e179a63be16.tar.bz2
- Patch #155986 by Uwe: fixed typos.
Diffstat (limited to 'modules/upload')
-rw-r--r--modules/upload/upload.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module
index f8ddc5f86..434c87c59 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -166,7 +166,7 @@ function upload_admin_settings() {
'#default_value' => variable_get('upload_max_resolution', 0),
'#size' => 15,
'#maxlength' => 10,
- '#description' => t('The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction. If an <a href="!image-toolkit-link">image toolkit</a> is installed, files exceeding this value will be scalled down to fit.', array('!image-toolkit-link' => url('admin/settings/image-toolkit'))),
+ '#description' => t('The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction. If an <a href="!image-toolkit-link">image toolkit</a> is installed, files exceeding this value will be scaled down to fit.', array('!image-toolkit-link' => url('admin/settings/image-toolkit'))),
'#field_suffix' => '<kbd>'. t('WIDTHxHEIGHT') .'</kbd>'
);
$form['settings_general']['upload_list_default'] = array(
@@ -317,7 +317,7 @@ function upload_file_download($file) {
function _upload_prepare(&$node) {
global $user;
- // Initialize _SESSION['upload_files'] if no post occured.
+ // Initialize _SESSION['upload_files'] if no post occurred.
// This clears the variable from old forms and makes sure it
// is an array to prevent notices and errors in other parts
// of upload.module.