Update of /cvsroot/phpwsbb/phpwsbb/class
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30201/class
Modified Files:
Manager.php
Log Message:
Fix from jydallstar for bug #1050082
Index: Manager.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** Manager.php 8 Oct 2004 14:15:22 -0000 1.57
--- Manager.php 20 Oct 2004 01:40:16 -0000 1.58
***************
*** 681,686 ****
$tags['EXIT_LINK'] = PHPWS_Text::moduleLink($_SESSION['translate']->it('Back to Forums'), 'phpwsbb', $this->last_viewed);
! $tags['SIGNATURE_LABEL'] = $_SESSION['translate']->it('Your Signature');
! $tags['SIGNATURE_HELP'] = $_SESSION['translate']->it('This is a block of text that is automatically added to posts you make. There is a 255 character limit');
$tags['LOCATION_LABEL'] = $_SESSION['translate']->it('Your Location');
if ($this->_use_avatars)
--- 681,688 ----
$tags['EXIT_LINK'] = PHPWS_Text::moduleLink($_SESSION['translate']->it('Back to Forums'), 'phpwsbb', $this->last_viewed);
! if ($this->_use_signatures) {
! $tags['SIGNATURE_LABEL'] = $_SESSION['translate']->it('Your Signature');
! $tags['SIGNATURE_HELP'] = $_SESSION['translate']->it('This is a block of text that is automatically added to posts you make. There is a 255 character limit');
! }
$tags['LOCATION_LABEL'] = $_SESSION['translate']->it('Your Location');
if ($this->_use_avatars)
|