Skip to content
Snippets Groups Projects
Commit 38402b6c authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Bug #21452 reported by njivy: added missing return to tracker_user_page().

  It did not return nor print its output.
parent 15cf9e1a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -60,7 +60,7 @@ function tracker_menu($may_cache) {
function tracker_track_user() {
if ($account = user_load(array('uid' => arg(1)))) {
drupal_set_title($account->name);
tracker_page($account->uid);
return tracker_page($account->uid);
}
}
......
......@@ -60,7 +60,7 @@ function tracker_menu($may_cache) {
function tracker_track_user() {
if ($account = user_load(array('uid' => arg(1)))) {
drupal_set_title($account->name);
tracker_page($account->uid);
return tracker_page($account->uid);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment