|
Member
Offline
|
In the file LayoutsEditProfile.php, the line...
Code:
$body = theme('title', $EDITPROFILE_LANG["theme_title"]) . theme('start_content') . '<div id="editprofileLinks" class="editprofile-links" align="center">[ <a id="editAccLink" class="text-link editprofile-link editprofile-account-link" href="'.$settings['site_url'].'/index.php?act=editaccount"><strong>' . str_replace(' ',' ',$EDITPROFILE_LANG["account_settings"]) . '</strong></a> ] [ <a id="editMiscLink" class="text-link editprofile-link editprofile-misc-link" href="'.$settings['site_url'].'/index.php?act=editmiscellaneous"><strong>' . str_replace(' ',' ',$EDITPROFILE_LANG["misc_settings"]) . '</strong></a> ] [ <a id="editLookLink" class="text-link editprofile-link editprofile-look-link" href="'.$settings['site_url'].'/index.php?act=editlook"><strong>' . str_replace(' ',' ',$EDITPROFILE_LANG["look_settings"]) . '</strong></a> ]'.($user['admin_panel'] ? ' [ <a id="editAdminLink" class="text-link editprofile-link editprofile-admin-link" href="'.$settings['site_url'].'/index.php?act=userpreferances"><strong>' . str_replace(' ',' ',$EDITPROFILE_LANG["user_settings"]) . '</strong></a> ]' : '').'</div>';
...has this little bit here...
Code:
($user['admin_panel'] ? ' [ <a id="editAdminLink" class="text-link editprofile-link editprofile-admin-link" href="'.$settings['site_url'].'/index.php?act=userpreferances"><strong>' . str_replace(' ',' ',$EDITPROFILE_LANG["user_settings"]) . '</strong></a> ]' : '')
...which looks like it's only supposed to display if the user has access to the admin panel.
Upon creating a new user, and setting them as a "member" (sendmail isn't working, haven't looked into it yet) the member can see this in the edit profile page. If I read right, the idea is, only admins can see it.
My fix? I made my own admin panel layout, so simply removed it.
For readability purposes, may want to look into breaking that line up... a 1175 character line makes for slightly more difficult tweaking. Last Edit: 16th September, 2009, 07:54:08 PM by FWishbringer |