| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
ramires
Joined: 18 Oct 2007 Posts: 1
|
Posted: Thu Oct 18, 2007 1:42 am Post subject: bugs in instructions |
|
|
in your instructions i found in one bug.
in function.php there is no $profile_url
| Code: |
#
#-----[ FIND ]------------------------------------------
#
$profile_url = ($custom_profile_url !== false) ? $custom_profile_url : append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=viewprofile');
$profile_url .= '&u=' . (int) $user_id;
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
if ($custom_profile_url === false) {
$profile_url = append_sid($phpbb_root_path . 'memberlist.' . $phpEx . '?mode=viewprofile&u=' . (int) $user_id);
} else {
$cust_delim = ( strpos($custom_profile_url, '?') !== FALSE ) ? '&' : '?';
$profile_url = append_sid($custom_profile_url. $cust_delim . 'mode=viewprofile&u=' . (int) $user_id);
}
// www.phpBB-SEO.com SEO TOOLKIT END
|
i ve version:
* @version $Id: functions.php,v 1.640 2007/10/09 21:04:21 kellanved Exp $
and there is no this piece of code which you suggest to replace |
|
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3482
|
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |