Open includes/functions.php
find:
Code: Select all
'U_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx"),
Code: Select all
'U_EDIT_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=172'),
find:
Code: Select all
'PROFILE' => 'User Control Panel',
Code: Select all
'EDIT_PROFILE' => 'Edit Your Profile',
find:
Code: Select all
<li class="icon-ucp">
Code: Select all
<a href="{U_EDIT_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_EDIT_PROFILE}</a> •
pic: Open styles/subsilver2/template/overall_header.html
find:
Code: Select all
<!-- IF S_USER_LOGGED_IN --> <a href="{U_PROFILE}"><img src="{T_THEME_PATH}/images/icon_mini_profile.gif" width="12" height="13" alt="*" /> {L_PROFILE}</a><!-- ENDIF -->
Code: Select all
<!-- IF S_USER_LOGGED_IN --> <a href="{U_EDIT_PROFILE}" title="{L_PROFILE}" accesskey="e"><img src="{T_THEME_PATH}/images/icon_mini_profile.gif" width="12" height="13" alt="*" /> {L_EDIT_PROFILE}</a> • <a href="{U_PROFILE}"> {L_PROFILE}</a><!-- ENDIF -->
pic: