Skip to content

Commit

Permalink
Added the missing commas that must follow the last multiline array items
Browse files Browse the repository at this point in the history
  • Loading branch information
kiamlaluno committed Dec 16, 2023
1 parent cd55d90 commit f892672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/modules/image/image.theme.inc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function theme_image_style_list($variables) {
$empty = t('There are currently no styles. <a href="!url">Add a new one</a>.', array('!url' => url('admin/config/media/image-styles/add')));

return theme('table', array('header' => $header,
'rows' => $rows, 'empty' => $empty
'rows' => $rows, 'empty' => $empty,
));
}

Expand Down
2 changes: 1 addition & 1 deletion core/modules/views_ui/views_ui.theme.inc
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ function theme_views_ui_rearrange_filter_form(&$variables) {
backdrop_add_tabledrag('views-rearrange-filters', 'order', 'sibling', 'weight');
$output .= theme('table', array('rows' => $rows,
'attributes' => array('id' => 'views-rearrange-filters',
'class' => array('arrange')
'class' => array('arrange'),
),
'empty' => t('No fields available.'),
));
Expand Down

0 comments on commit f892672

Please sign in to comment.