diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-01 07:17:59 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-01 07:17:59 +0000 |
commit | 10fd10cf455bf21f7799c6c9b245808f5262733a (patch) | |
tree | 98eb0c73bb9f11625e18ec04cccdcf6fceed5da6 /modules/update | |
parent | b9a3a7bfc1495fea6a00a418ca0e50fa9fc939f2 (diff) | |
download | brdo-10fd10cf455bf21f7799c6c9b245808f5262733a.tar.gz brdo-10fd10cf455bf21f7799c6c9b245808f5262733a.tar.bz2 |
#700686 by dww: Make ArchiverInterface::listContents() return a simple list of files, rather than a keyed array, which is inconsistent between extension handlers.
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 3425ae247..0c63d3e6a 100644 --- a/modules/update/update.manager.inc +++ b/modules/update/update.manager.inc @@ -563,7 +563,7 @@ function update_manager_install_form_submit($form, &$form_state) { return; } // Unfortunately, we can only use the directory name for this. :( - $project = drupal_substr($files[0]['filename'], 0, -1); + $project = drupal_substr($files[0], 0, -1); try { update_manager_archive_verify($project, $local_cache, $directory); |