summaryrefslogtreecommitdiff
path: root/themes/seven/template.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-21 06:55:23 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-21 06:55:23 +0000
commit173b1392564efe00b1e2f056bd9d5a64731526be (patch)
treedd75668fcabd45ce1121a1b9a3774ddc04ad9569 /themes/seven/template.php
parenta25fafc59771af386238823f01b337b4dfce7207 (diff)
downloadbrdo-173b1392564efe00b1e2f056bd9d5a64731526be.tar.gz
brdo-173b1392564efe00b1e2f056bd9d5a64731526be.tar.bz2
#777108 by puddlenipper: Fixed Seven theme uses double quotes when it should use single quotes.
Diffstat (limited to 'themes/seven/template.php')
-rw-r--r--themes/seven/template.php2
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 {