diff options
-rw-r--r-- | themes/seven/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/seven/template.php b/themes/seven/template.php index 472c35538..cbb198980 100644 --- a/themes/seven/template.php +++ b/themes/seven/template.php @@ -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 { |