summaryrefslogtreecommitdiff
path: root/modules/upload/upload.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-01-05 22:43:41 +0000
committerDries Buytaert <dries@buytaert.net>2008-01-05 22:43:41 +0000
commitdc2cd5ea4dc1340abf9b2499974e0811a24e8a2d (patch)
treeabc055cdeef8f770f9a7c8884bae270fda6751a9 /modules/upload/upload.admin.inc
parentd1b58bb9c1d27d01578dd31b7dbd12eb4baddc38 (diff)
downloadbrdo-dc2cd5ea4dc1340abf9b2499974e0811a24e8a2d.tar.gz
brdo-dc2cd5ea4dc1340abf9b2499974e0811a24e8a2d.tar.bz2
- Patch #206418 by meba: fixed typo - 'sever' should be 'server'.
Diffstat (limited to 'modules/upload/upload.admin.inc')
-rw-r--r--modules/upload/upload.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upload/upload.admin.inc b/modules/upload/upload.admin.inc
index 18754a103..7963d7320 100644
--- a/modules/upload/upload.admin.inc
+++ b/modules/upload/upload.admin.inc
@@ -15,7 +15,7 @@ function upload_admin_settings_validate($form, &$form_state) {
$default_usersize = $form_state['values']['upload_usersize_default'];
$exceed_max_msg = t('Your PHP settings limit the maximum file size per upload to %size.', array('%size' => format_size(file_upload_max_size()))) .'<br/>';
- $more_info = t("Depending on your sever environment, these settings may be changed in the system-wide php.ini file, a php.ini file in your Drupal root directory, in your Drupal site's settings.php file, or in the .htaccess file in your Drupal root directory.");
+ $more_info = t("Depending on your server environment, these settings may be changed in the system-wide php.ini file, a php.ini file in your Drupal root directory, in your Drupal site's settings.php file, or in the .htaccess file in your Drupal root directory.");
if (!is_numeric($default_uploadsize) || ($default_uploadsize <= 0)) {
form_set_error('upload_uploadsize_default', t('The %role file size limit must be a number and greater than zero.', array('%role' => t('default'))));