Update of /cvsroot/phpwsbb/phpwsbb/class
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17223
Modified Files:
Thread.php
Log Message:
Removed local 'new posts' tag.
Added title on 'Moved post message'
Index: Thread.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** Thread.php 25 Feb 2006 21:29:40 -0000 1.83
--- Thread.php 1 Mar 2006 14:45:16 -0000 1.84
***************
*** 322,327 ****
$tags['MYPROFILE'] = $this->createLink($mysettings, array('PHPWSBB_MAN_OP'=>'usersettings',
'PHPWS_MAN_ITEMS[]'=>$this->getId()), 'mysettings.png', 16, 16);
- $newposts = $_SESSION['translate']->it('View New Posts');
- $tags['NEW_POSTS'] = $this->createLink($newposts, array('PHPWSBB_MAN_OP'=>'getnew'), 'new_messages.png', 16, 16);
}
--- 322,325 ----
***************
*** 686,689 ****
--- 684,688 ----
case 'move':
+ $title = $_SESSION['translate']->it('Topic Moved');
$content = $_SESSION['PHPWSBB_Manager']->_menu(NULL, $this) . $this->_move();
break;
|