diff options
Diffstat (limited to 'modules/tracker/tracker.pages.inc')
-rw-r--r-- | modules/tracker/tracker.pages.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/tracker/tracker.pages.inc b/modules/tracker/tracker.pages.inc index b39b415a7..1466848e5 100644 --- a/modules/tracker/tracker.pages.inc +++ b/modules/tracker/tracker.pages.inc @@ -76,7 +76,9 @@ function tracker_page($account = NULL, $set_title = FALSE) { '#rows' => $rows, '#header' => array(t('Type'), t('Post'), t('Author'), t('Replies'), t('Last updated')), '#theme' => 'table', - '#attached_css' => array(drupal_get_path('module', 'tracker') . '/tracker.css' => array('preprocess' => FALSE)), + '#attached' => array( + 'css' => array(drupal_get_path('module', 'tracker') . '/tracker.css' => array('preprocess' => FALSE)), + ), ); $page['pager'] = array( '#theme' => 'pager', |