diff options
Diffstat (limited to 'modules/tracker')
-rw-r--r-- | modules/tracker/tracker.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index 3d82de563..1d06272c3 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -104,8 +104,9 @@ function tracker_page() { global $user; if (user_access("access content")) { - print theme("header", t("Recent posts")); - print theme("box", t("Recent posts"), tracker_posts(arg(1))); + drupal_set_title(t("Recent posts")); + print theme("header"); + print tracker_posts(arg(1)); print theme("footer"); } else { |