lange nicht mehr hier gewesen.
ich bin gerade dabei meine Profilansicht neuzugestallten und wollte gerne mal wissen wie ich die Signatur der User darein bekomme.
irgndiwe Funktioniert das doch in der "usercp_viewprofile.php" aber wie und wo ich was eintragen muß weis ich leider nicht.
könnte mir das jemand sagen ?
hatte das ganze so mal versucht
Code: Alles auswählen
$user_sig = '';
if ( $profiledata['user_attachsig'] && $board_config['allow_sig'] )
{
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
$user_sig = $profiledata['user_sig'];
$user_sig_bbcode_uid = $profiledata['user_sig_bbcode_uid'];
if ( $user_sig != '' )
{
if ( !$board_config['allow_html'] && $profiledata['user_allowhtml'] )
{
$user_sig = preg_replace('#(<)([\/]?.*?)(>)#is', "<\\2>", $user_sig);
}
if ( $board_config['allow_bbcode'] && $user_sig_bbcode_uid != '' )
{
$user_sig = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($user_sig, $user_sig_bbcode_uid) : preg_replace('/\:[0-9a-z\:]+\]/si', ']', $user_sig);
}
$user_sig = make_clickable($user_sig);
if ( !$userdata['user_allowswearywords'] )
{
$orig_word = !empty($orig_word) ? $orig_word : array();
$replacement_word = !empty($replacement_word) ? $replacement_word : array();
obtain_word_list($orig_word, $replacement_word);
$user_sig = preg_replace($orig_word, $replacement_word, $user_sig);
}
if ( $profiledata['user_allowsmile'] )
{
$user_sig = smilies_pass($user_sig);
}
$user_sig = str_replace("\n", "\n<br />\n", $user_sig);
}
$template->assign_block_vars('switch_user_sig_block', array());
}Code: Alles auswählen
$search = '<a href="' . $temp_url . '">' . $lang['Search_user_posts'] . '</a>';