Issue #2006952 followup by kay_v: Replace theme() with drupal_render() in seven.theme.
parent
9dd08c04a1
commit
6c5cc0c281
|
@ -120,11 +120,11 @@ function seven_tablesort_indicator($variables) {
|
|||
|
||||
if($variables['style'] == 'asc') {
|
||||
$image_uri = $theme_path . '/images/arrow-asc.png';
|
||||
$text = t('sort ascending');
|
||||
$text = t('Sort ascending');
|
||||
}
|
||||
else {
|
||||
$image_uri = $theme_path . '/images/arrow-desc.png';
|
||||
$text = t('sort descending');
|
||||
$text = t('Sort descending');
|
||||
}
|
||||
|
||||
$image = array(
|
||||
|
|
Loading…
Reference in New Issue