See if you can do the same edits that is required for page_header.php in the page_header_printer.php file.
Let me know if it works.






// Begin original phpbb info
'AVATAR_IMG' => $avatar_img,
// Start Online/Offline Status Images MOD
'STATUS_IMG' => display_online_offline($profiledata['user_id'], $online_array),
'L_ONLINE_OFFLINE' => $lang['Online_Offline'],
// End Online/Offline Status Images MOD
'USERNAME' => $profiledata['username'],
'JOINED' => create_date($lang['DATE_FORMAT'], $profiledata['user_regdate'], $board_config['board_timezone']),
'POSTER_RANK' => $poster_rank,
'RANK_IMAGE' => $rank_image,
'POSTS_PER_DAY' => $posts_per_day,
'POSTS' => $profiledata['user_posts'],
'PERCENTAGE' => $percentage . '%',
'POST_DAY_STATS' => sprintf($lang['User_post_day_stats'], $posts_per_day),
'POST_PERCENT_STATS' => sprintf($lang['User_post_pct_stats'], $percentage),
<tr>
<td valign="middle" height="1%" align="center" nowrap="nowrap"><div align="left"><span class="genmed"><br /><span class="gensmall">{POSTER_RANK}</span><br /><br />
{PROFILE_SEX}</span></div></td>
</tr>
<tr>
<td valign="middle" height="1%" align="center" nowrap="nowrap"><div align="left"><span class="genmed">{MPS_AGE}</span></div></td>
</tr>
<tr>
<td valign="middle" height="1%" align="center"><div align="left"><span class="genmed">{LOCATION}</span></div></td>
</tr>
<tr>
<td valign="middle" height="1%" align="center"><div align="left">{STATUS_IMG}</div></td>
</tr>
<tr>
<td valign="top" height="1%" align="center" nowrap="nowrap"><div align="left"><span class="genmed"><br />{L_LAST_LOGIN}<br />{LAST_VISIT_DATE}</span></div></td>
</tr>
'STATUS_IMG' => display_online_offline($profiledata['user_id'], $online_array),


EXreaction wrote:Is the code you put in inside of a function?
If it is in a function you will need to put $online_array in the list of globals, or put
global $online_array;
somewhere in the function (at the top would be best).
If not, see if you can find out what error it is in your error logs.

Users browsing this forum: No registered users and 2 guests