Update to Drupal 8.0.2. For more information, see https://www.drupal.org/drupal-8.0.2-release-notes
This commit is contained in:
parent
1a0e9d9fac
commit
a6b049dd05
538 changed files with 5247 additions and 1594 deletions
|
@ -197,9 +197,9 @@ class UpdateManagerUpdate extends FormBase {
|
|||
|
||||
if ($needs_manual) {
|
||||
// There are no checkboxes in the 'Manual updates' table so it will be
|
||||
// rendered by _theme('table'), not _theme('tableselect'). Since the data
|
||||
// formats are incompatible, we convert now to the format expected by
|
||||
// _theme('table').
|
||||
// rendered by '#theme' => 'table', not '#theme' => 'tableselect'. Since
|
||||
// the data formats are incompatible, we convert now to the format
|
||||
// expected by '#theme' => 'table'.
|
||||
unset($entry['#weight']);
|
||||
$attributes = $entry['#attributes'];
|
||||
unset($entry['#attributes']);
|
||||
|
|
|
@ -46,7 +46,7 @@ class UpdateUploadTest extends UpdateTestBase {
|
|||
);
|
||||
// This also checks that the correct archive extensions are allowed.
|
||||
$this->drupalPostForm('admin/modules/install', $edit, t('Install'));
|
||||
$this->assertText(t('Only files with the following extensions are allowed: @archive_extensions.', array('@archive_extensions' => archiver_get_extensions())),'Only valid archives can be uploaded.');
|
||||
$this->assertText(t('Only files with the following extensions are allowed: @archive_extensions.', array('@archive_extensions' => archiver_get_extensions())), 'Only valid archives can be uploaded.');
|
||||
$this->assertUrl('admin/modules/install');
|
||||
|
||||
// Check to ensure an existing module can't be reinstalled. Also checks that
|
||||
|
|
Reference in a new issue