Skip to content
Snippets Groups Projects
Commit bee10263 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2062033 by InternetDevels: Replace user_access() calls with...

Issue #2062033 by InternetDevels: Replace user_access() calls with ->hasPermission() in tracker module.
parent 9def98f6
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
......@@ -172,7 +172,7 @@ function tracker_cron() {
*/
function _tracker_myrecent_access($account) {
// This path is only allowed for authenticated users looking at their own content.
return $account->id() && ($GLOBALS['user']->id() == $account->id()) && user_access('access content');
return $account->id() && ($GLOBALS['user']->id() == $account->id()) && $account->hasPermission('access content');
}
/**
......@@ -188,7 +188,7 @@ function _tracker_myrecent_access($account) {
* @see tracker_menu()
*/
function _tracker_user_access($account) {
return $account->access('view') && user_access('access content');
return $account->access('view') && $account->hasPermission('access content');
}
/**
......
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