На сайте есть страница на которой выводится список пользователей с определенной ролью.
Сделано с помощью page и такого кода
<?php
$rid = 3;
$nlimit = 20;
$result = pager_query(db_rewrite_sql("SELECT u.uid, u.created FROM {users} u INNER JOIN {users_roles} ur ON u.uid=ur.uid WHERE ur.rid = $rid ORDER BY u.created ASC"), variable_get(0, $nlimit));
$fields = array();
while ($account = db_fetch_object($result)) {
$account = user_load(array('uid' => $account->uid));
$profile = _profile_update_user_fields($fields, $account);
$output .= theme('profile_listing', $account, $profile);
}
$output .= theme('pager', NULL, $nlimit);
print ($output);
?>
Все работало нормально, но после установки taxonomy access вылезает ошибка: