diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-28 11:40:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-28 11:40:57 +0000 |
commit | 00ecc0a208cf498c7e5e2e734364f62509f1be6e (patch) | |
tree | ad206e3d7e1bb80be040fe06f7e6e6ed9e2fe235 /modules/update | |
parent | 49334ae538434dc6afae2a02d4446f41d7c68bef (diff) | |
download | brdo-00ecc0a208cf498c7e5e2e734364f62509f1be6e.tar.gz brdo-00ecc0a208cf498c7e5e2e734364f62509f1be6e.tar.bz2 |
- Patch #755094 by heyrocker: update_manager_archive_verify() failure message refered to undefined variable.
Diffstat (limited to 'modules/update')
-rw-r--r-- | modules/update/update.manager.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc index 0c63d3e6a..f72ce44c1 100644 --- a/modules/update/update.manager.inc +++ b/modules/update/update.manager.inc @@ -685,7 +685,7 @@ function update_manager_archive_extract($file, $directory) { function update_manager_archive_verify($project, $archive_file, $directory) { $failures = module_invoke_all('verify_update_archive', $project, $archive_file, $directory); if (!empty($failures)) { - throw new Exception(t('Unable to extract %file', array('%file' => $file))); + throw new Exception(t('Unable to extract %file', array('%file' => $archive_file))); } } |