diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-22 07:36:50 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-22 07:36:50 +0000 |
commit | 53f6d10baaaa43a4bb66d4c2123990130a4fb9cd (patch) | |
tree | 808763da69fb41a5aa25cc5a4965c92070f7e8bb /modules | |
parent | 5e39cb73cb4cc89447d135b140ab1b15877f8420 (diff) | |
download | brdo-53f6d10baaaa43a4bb66d4c2123990130a4fb9cd.tar.gz brdo-53f6d10baaaa43a4bb66d4c2123990130a4fb9cd.tar.bz2 |
#775240 by droplet: Fixed misspelling of occurred.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index d068c40fd..1e526fcb0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -3221,7 +3221,7 @@ function system_retrieve_file($url, $destination = NULL, $managed = FALSE, $repl } $result = drupal_http_request($url); if ($result->code != 200) { - drupal_set_message(t('HTTP error @errorcode occured when trying to fetch @remote.', array('@errorcode' => $result->code, '@remote' => $url)), 'error'); + drupal_set_message(t('HTTP error @errorcode occurred when trying to fetch @remote.', array('@errorcode' => $result->code, '@remote' => $url)), 'error'); return FALSE; } $local = $managed ? file_save_data($result->data, $path, $replace) : file_unmanaged_save_data($result->data, $path, $replace); |