remote.inc contains 3 error messages all with the same copy and paste typo in:
switch ($info['http_code']) {
case 403:
form_error($element, t('The remote file could not be transfered because access to the file was denied.'));
break;
case 404:
form_error($element, t('The remote file could not be transfered because it was not found.'));
break;
default:
form_error($element, t('The remote file could not be transfered due to an HTTP error (@code).', array('@code' => $info['http_code'])));
}
"transfered" should be corrected to "transferred".
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | spelling_transfered-1221470-2.patch | 1.74 KB | budda |
| #1 | spelling_transfered-1221470-1.patch | 1.13 KB | budda |
Comments
Comment #1
buddaGo on then. I'll provide a patch to correct the spelling :)
Comment #2
buddaSpotted a further one. Re-rolled patch.
Comment #3
quicksketchThanks, committed to both branches!