Update of /cvsroot/phpwsbb/phpwsbb/class
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15333
Modified Files:
Forum.php Manager.php Thread.php
Log Message:
Use existing new_messages.png for Eloi's 'View New Posts' feature
Index: Thread.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v
retrieving revision 1.82
retrieving revision 1.83
diff -C2 -d -r1.82 -r1.83
*** Thread.php 24 Feb 2006 06:50:46 -0000 1.82
--- Thread.php 25 Feb 2006 21:29:40 -0000 1.83
***************
*** 323,327 ****
'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'), 'xxxx.png', 16, 16);
}
--- 323,327 ----
'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);
}
Index: Manager.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** Manager.php 24 Feb 2006 06:50:46 -0000 1.67
--- Manager.php 25 Feb 2006 21:29:40 -0000 1.68
***************
*** 345,349 ****
$tags['MYPROFILE'] = PHPWSBB_Thread::createLink($mysettings, array('PHPWSBB_MAN_OP'=>'usersettings'), 'mysettings.png', 16, 16);
$newposts = $_SESSION['translate']->it('View New Posts');
! $tags['NEW_POSTS'] = PHPWSBB_Thread::createLink($newposts, array('PHPWSBB_MAN_OP'=>'getnew'), 'xxxx.png', 16, 16);
}
--- 345,349 ----
$tags['MYPROFILE'] = PHPWSBB_Thread::createLink($mysettings, array('PHPWSBB_MAN_OP'=>'usersettings'), 'mysettings.png', 16, 16);
$newposts = $_SESSION['translate']->it('View New Posts');
! $tags['NEW_POSTS'] = PHPWSBB_Thread::createLink($newposts, array('PHPWSBB_MAN_OP'=>'getnew'), 'new_messages.png', 16, 16);
}
Index: Forum.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Forum.php,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** Forum.php 23 Feb 2006 06:16:36 -0000 1.42
--- Forum.php 25 Feb 2006 21:29:39 -0000 1.43
***************
*** 196,200 ****
'PHPWS_MAN_ITEMS[]'=>$this->getId()), 'mysettings.png', 16, 16);
$newposts = $_SESSION['translate']->it('View New Posts');
! $tags['NEW_POSTS'] = PHPWSBB_Thread::createLink($newposts, array('PHPWSBB_MAN_OP'=>'getnew'), 'xxxx.png', 16, 16);
}
if(!empty($this->_moderators)) {
--- 196,200 ----
'PHPWS_MAN_ITEMS[]'=>$this->getId()), 'mysettings.png', 16, 16);
$newposts = $_SESSION['translate']->it('View New Posts');
! $tags['NEW_POSTS'] = PHPWSBB_Thread::createLink($newposts, array('PHPWSBB_MAN_OP'=>'getnew'), 'new_messages.png', 16, 16);
}
if(!empty($this->_moderators)) {
|