|
From: Meik S. <acy...@us...> - 2003-03-18 23:24:06
|
Update of /cvsroot/phpbb/phpBB2
In directory sc8-pr-cvs1:/tmp/cvs-serv20873
Modified Files:
Tag: phpBB-2_0_0
privmsg.php
Log Message:
fixed some small bugs... added the updater (this one needs some testing, i have moved some things around)
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/Attic/privmsg.php,v
retrieving revision 1.96.2.27
retrieving revision 1.96.2.28
diff -C2 -r1.96.2.27 -r1.96.2.28
*** privmsg.php 27 Feb 2003 13:05:28 -0000 1.96.2.27
--- privmsg.php 18 Mar 2003 23:24:02 -0000 1.96.2.28
***************
*** 1456,1460 ****
$privmsg_message = preg_replace('#</textarea>#si', '</textarea>', $privmsg_message);
! $user_sig = ( $board_config['allow_sig'] ) ? $privmsg['user_sig'] : '';
$to_username = $privmsg['username'];
--- 1456,1460 ----
$privmsg_message = preg_replace('#</textarea>#si', '</textarea>', $privmsg_message);
! $user_sig = ( $board_config['allow_sig'] ) ? (($privmsg['privmsgs_type'] == PRIVMSGS_NEW_MAIL && %) ? $user_sig : $privmsg['user_sig']) : '';
$to_username = $privmsg['username'];
***************
*** 1680,1683 ****
--- 1680,1684 ----
// the user has a signature
//
+ echo ";".$user_sig.";";
if ( $user_sig != '' )
{
|