Issue #2006952 followup by kay_v: Replace theme() with drupal_render() in seven.theme.

8.0.x
Alex Pott 2013-06-18 14:11:49 +02:00
parent 9dd08c04a1
commit 6c5cc0c281
1 changed files with 2 additions and 2 deletions

View File

@ -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(