1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

bbcode parse signatures

git-svn-id: file:///svn/phpbb/trunk@3915 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-04-22 01:04:24 +00:00
parent d30d4987f3
commit 3bdde3d41f

View File

@ -23,7 +23,6 @@ define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
// Start session management
$user->start();
@ -82,10 +81,6 @@ while ($row = $db->sql_fetchrow($result))
$db->sql_freeresult($result);
// Instantiate new bbcode object for potential later use
$bbcode = new bbcode();
// What do you want to do today? ... oops, I think that line is taken ...
switch ($mode)
{
@ -593,7 +588,9 @@ include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
function show_profile($data)
{
global $config, $auth, $template, $user, $SID, $phpEx;
global $ranksrow, $bbcode;
global $ranksrow;
static $bbcode;
$username = $data['username'];
$user_id = $data['user_id'];
@ -690,7 +687,12 @@ function show_profile($data)
if ($data['user_sig_bbcode_bitfield'])
{
$bbcode->bbcode_second_pass(&$data['user_sig'], $data['user_sig_bbcode_uid'], $data['user_sig_bbcode_bitfield']);
if (!isset($bbcode))
{
include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx);
$bbcode = new bbcode();
}
$bbcode->bbcode_second_pass($data['user_sig'], $data['user_sig_bbcode_uid'], $data['user_sig_bbcode_bitfield']);
}
$last_visit = (!empty($data['session_time'])) ? $data['session_time'] : $data['user_lastvisit'];
@ -699,7 +701,7 @@ function show_profile($data)
'USERNAME' => $username,
'USER_COLOR' => (!empty($data['user_colour'])) ? $data['user_colour'] : '',
'RANK_TITLE' => $rank_title,
'SIGNATURE' => (!empty($data['user_sig'])) ? $data['user_sig'] : '',
'SIGNATURE' => (!empty($data['user_sig'])) ? str_replace("\n", '<br />', $data['user_sig']) : '',
'ONLINE_IMG' => (intval($data['session_time']) >= time() - ($config['load_online_time'] * 60)) ? $user->img('btn_online', $user->lang['USER_ONLINE']) : $user->img('btn_offline', $user->lang['USER_ONLINE']),
'AVATAR_IMG' => $poster_avatar,