Skip to content
Snippets Groups Projects
Commit 173b1392 authored by Angie Byron's avatar Angie Byron
Browse files

#777108 by puddlenipper: Fixed Seven theme uses double quotes when it should use single quotes.

parent a25fafc5
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -69,7 +69,7 @@ function seven_admin_block_content($variables) {
function seven_tablesort_indicator($variables) {
$style = $variables['style'];
$theme_path = drupal_get_path('theme', 'seven');
if ($style == "asc") {
if ($style == 'asc') {
return theme('image', array('path' => $theme_path . '/images/arrow-asc.png', 'alt' => t('sort ascending'), 'title' => t('sort ascending')));
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment