FORUMS


The Form Tools forums are no longer active, but the old posts have been archived here. Please see the Help page on how to get help / report issues.

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ability to edit admin accounts with GUI
#1
I currently have about 8 admin users. Problem is with the "Your Account" page (/formtools/admin/account/). It shows the same info for all admins?

The function within /formtools/global/code/administrator.php > ft_get_admin_info() could be more specific?
Current query:
SELECT * FROM {$g_table_prefix}accounts
WHERE account_type = 'admin'
LIMIT 1

Suggested query:
$account_id = $_SESSION["ft"]["account"]["account_id"];
SELECT * FROM {$g_table_prefix}accounts
WHERE account_type = 'admin' AND account_id = $account_id
LIMIT 1

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)