You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(48) |
Apr
(45) |
May
(11) |
Jun
(7) |
Jul
|
Aug
(11) |
Sep
(75) |
Oct
(38) |
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(17) |
Feb
|
Mar
(22) |
Apr
|
May
(1) |
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(5) |
Feb
(29) |
Mar
(22) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Eloi G. <ada...@us...> - 2004-10-08 13:11:04
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26782/class Modified Files: Message.php Log Message: Fixed Bug Report [1042728] "1.0.0 CVS: Editing a post increments number of posts" Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** Message.php 3 Oct 2004 03:13:40 -0000 1.68 --- Message.php 8 Oct 2004 13:10:53 -0000 1.69 *************** *** 448,452 **** // Update user statistics ! $GLOBALS['core']->query('UPDATE mod_phpwsbb_user_info SET posts=posts+1 WHERE user_id='.$_SESSION['OBJ_user']->user_id, true); // Update thread object with new statistics --- 448,453 ---- // Update user statistics ! if($new) ! $GLOBALS['core']->query('UPDATE mod_phpwsbb_user_info SET posts=posts+1 WHERE user_id='.$_SESSION['OBJ_user']->user_id, true); // Update thread object with new statistics |
From: Eloi G. <ada...@us...> - 2004-10-08 13:03:29
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25092/class Modified Files: Runtime.php Log Message: Applied Patch [1039265] "Latest Posts Block optimization" Index: Runtime.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Runtime.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Runtime.php 17 Sep 2004 17:15:05 -0000 1.13 --- Runtime.php 8 Oct 2004 13:03:17 -0000 1.14 *************** *** 95,104 **** $c=0; $block = NULL; ! $result = $GLOBALS['core']->sqlSelect('mod_phpwsbb_threads', 'hidden', 0, 'lastpost DESC'); if($result) { $block .= '<ul>'; foreach($result as $row) { - if($c > $maxlatestthreads) - break; $thread = new PHPWSBB_Forum($row); if(strlen($thread->getLabel()) > 15) --- 95,102 ---- $c=0; $block = NULL; ! $result = $GLOBALS['core']->sqlSelect('mod_phpwsbb_threads', 'hidden', 0, 'lastpost DESC', NULL, NULL, $maxlatestthreads); if($result) { $block .= '<ul>'; foreach($result as $row) { $thread = new PHPWSBB_Forum($row); if(strlen($thread->getLabel()) > 15) *************** *** 106,118 **** else $lbl = $thread->getLabel(); - //$block .= PHPWS_Text::moduleLink($lbl, 'phpwsbb', array('PHPWSBB_MAN_OP'=>'view', 'PHPWS_MAN_ITEMS'=>$thread->getId())).'<br />'; $block .= '<li>' . PHPWS_Text::moduleLink($lbl, 'phpwsbb', array('PHPWSBB_MAN_OP'=>'view', 'PHPWS_MAN_ITEMS'=>$thread->getId())) . '</li>'; $c++; } $block .= '</ul>'; } - - $GLOBALS['CNT_phpwsbb_latestthreadsblock']['title'] = $latestthreadsblocktitle; - $GLOBALS['CNT_phpwsbb_latestthreadsblock']['content'] = $block; } }// END FUNC showLatestThreadsBlock --- 104,114 ---- else $lbl = $thread->getLabel(); $block .= '<li>' . PHPWS_Text::moduleLink($lbl, 'phpwsbb', array('PHPWSBB_MAN_OP'=>'view', 'PHPWS_MAN_ITEMS'=>$thread->getId())) . '</li>'; $c++; } $block .= '</ul>'; + $GLOBALS['CNT_phpwsbb_latestthreadsblock']['title'] = $latestthreadsblocktitle; + $GLOBALS['CNT_phpwsbb_latestthreadsblock']['content'] = $block; } } }// END FUNC showLatestThreadsBlock |
From: Eloi G. <ada...@us...> - 2004-10-04 12:39:40
|
Update of /cvsroot/phpwsbb/phpwsbb/imglib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11975/imglib Modified Files: ImgLibrary.php Log Message: Fixed Bug Report [1038319] "1.0.0 CVS: Nasty error creating avatar gallery" Submitted this as patch to the core file as well. Index: ImgLibrary.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/imglib/ImgLibrary.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ImgLibrary.php 10 Sep 2004 02:00:45 -0000 1.2 --- ImgLibrary.php 4 Oct 2004 12:39:29 -0000 1.3 *************** *** 392,395 **** --- 392,396 ---- $row['WIDTH'] = $maxw + 20; $tags['IMAGE_SELECT_LST'] = ''; + $bg = ''; foreach($filelist as $fname=>$finfo) { $row['BG'] = $bg; *************** *** 729,736 **** foreach(explode('/',$the_path) AS $k) { $a.=$k.'/'; ! if(!is_dir($a)) { ! mkdir($a); ! chmod($a, 0755); ! } } } --- 730,735 ---- foreach(explode('/',$the_path) AS $k) { $a.=$k.'/'; ! if(!is_dir($a) && !PHPWS_File::makeDir($a)) ! exit('ERROR (PHPWS_IMGLib): Couldn\'t create directory "'.$a.'"<br />Make sure that the proper permissions are set in the parent directories.'); } } |
From: Eloi G. <ada...@us...> - 2004-10-03 23:18:09
|
Update of /cvsroot/phpwsbb/phpwsbb/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv397/lang Modified Files: phpwsbb.en.lng Log Message: Fixed Bug Report [1038108] "1.0.0 CVS: Off-site Avatar checking needed" Remote Avatars are now disabled by default & admins are now warned about the dangers of using them. Index: phpwsbb.en.lng =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/lang/phpwsbb.en.lng,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** phpwsbb.en.lng 3 Oct 2004 02:39:11 -0000 1.20 --- phpwsbb.en.lng 3 Oct 2004 23:17:40 -0000 1.21 *************** *** 82,85 **** --- 82,86 ---- a:|:No monitors were cleared.:|:No monitors were cleared. a:|:No topic was deleted from the database.:|:No topic was deleted from the database. + a:|:Not recommended:|:Not recommended a:|:Post Reply:|:Post Reply a:|:Poster:|:Poster |
From: Eloi G. <ada...@us...> - 2004-10-03 23:18:09
|
Update of /cvsroot/phpwsbb/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv397/templates Modified Files: edit_settings.tpl Log Message: Fixed Bug Report [1038108] "1.0.0 CVS: Off-site Avatar checking needed" Remote Avatars are now disabled by default & admins are now warned about the dangers of using them. Index: edit_settings.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/edit_settings.tpl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** edit_settings.tpl 3 Oct 2004 02:28:34 -0000 1.9 --- edit_settings.tpl 3 Oct 2004 23:17:40 -0000 1.10 *************** *** 1,18 **** {START_FORM} ! <label>{SETTINGS_ALLOW_ANON_POSTS} {ANONPOSTS_TEXT}</label><br /> ! <label>{SETTINGS_ALLOW_ANON_VIEW} {ANONVIEW_TEXT}</label><br /> ! <label>{ADMIN_EMAIL_TEXT}: {SETTINGS_ADMIN_EMAIL}</label> {ADMIN_EMAIL_HELP}<br /> ! <label>{SETTINGS_MONITOR_POSTS} {MONITOR_POSTS_TEXT}</label> {MONITOR_POSTS_HELP}<br /> ! <label>{SETTINGS_ALLOW_USER_MONITORS} {ALLOW_USER_MONITORS_TEXT}</label><br /> <label for="SETTINGS_email_text">{EMAIL_TEXT_TEXT}</label>:  ! {EMAIL_TEXT_HELP}<br />{SETTINGS_EMAIL_TEXT}<br /> ! <label>{SETTINGS_SHOWFORUMSBLOCK} {SHOWFORUMSBLOCK_TEXT}</label><br /> ! <label>{FORUMSBLOCKTITLE_TEXT}: {SETTINGS_FORUMSBLOCKTITLE}</label><br /> ! <label>{SETTINGS_SHOWLATESTTHREADSBLOCK} {SHOWLATESTTHREADSBLOCK_TEXT}</label><br /> ! <label>{LATESTTHREADSBLOCKTITLE_TEXT}: {SETTINGS_LATESTTHREADSBLOCKTITLE}</label><br /> ! <label>{SETTINGS_MAXLATESTTHREADS} {MAXLATESTTHREADS_TEXT}</label><br /> ! <label>{SETTINGS_USE_AVATARS} {USE_AVATARS_TEXT}</label><br /> ! <label>{SETTINGS_USE_OFFSITE_AVATARS} {USE_OFFSITE_AVATARS_TEXT}</label><br /> ! <label>{SETTINGS_USE_SIGNATURES} {USE_SIGNATURES_TEXT}</label><br /> <br /> <h3>{RANK_TABLE_TEXT}</h3> --- 1,45 ---- {START_FORM} ! <label>{SETTINGS_ALLOW_ANON_POSTS} {ANONPOSTS_TEXT}</label> ! <br /> ! <br /> ! <label>{SETTINGS_ALLOW_ANON_VIEW} {ANONVIEW_TEXT}</label> ! <br /> ! <br /> ! <label>{ADMIN_EMAIL_TEXT}: {SETTINGS_ADMIN_EMAIL}</label> {ADMIN_EMAIL_HELP} ! <br /> ! <br /> ! <label>{SETTINGS_MONITOR_POSTS} {MONITOR_POSTS_TEXT}</label> {MONITOR_POSTS_HELP} ! <br /> ! <br /> ! <label>{SETTINGS_ALLOW_USER_MONITORS} {ALLOW_USER_MONITORS_TEXT}</label> ! <br /> ! <br /> <label for="SETTINGS_email_text">{EMAIL_TEXT_TEXT}</label>:  ! {EMAIL_TEXT_HELP}<br />{SETTINGS_EMAIL_TEXT} ! <br /> ! <br /> ! <label>{SETTINGS_SHOWFORUMSBLOCK} {SHOWFORUMSBLOCK_TEXT}</label> ! <br /> ! <br /> ! <label>{FORUMSBLOCKTITLE_TEXT}: {SETTINGS_FORUMSBLOCKTITLE}</label> ! <br /> ! <br /> ! <label>{SETTINGS_SHOWLATESTTHREADSBLOCK} {SHOWLATESTTHREADSBLOCK_TEXT}</label> ! <br /> ! <br /> ! <label>{LATESTTHREADSBLOCKTITLE_TEXT}: {SETTINGS_LATESTTHREADSBLOCKTITLE}</label> ! <br /> ! <br /> ! <label>{SETTINGS_MAXLATESTTHREADS} {MAXLATESTTHREADS_TEXT}</label> ! <br /> ! <br /> ! <label>{SETTINGS_USE_AVATARS} {USE_AVATARS_TEXT}</label> ! <br /> ! <br /> ! <label>{SETTINGS_USE_OFFSITE_AVATARS} {USE_OFFSITE_AVATARS_TEXT}</label> ({USE_OFFSITE_AVATARS_HELP}) ! <br /> ! <br /> ! <label>{SETTINGS_USE_SIGNATURES} {USE_SIGNATURES_TEXT}</label> ! <br /> <br /> <h3>{RANK_TABLE_TEXT}</h3> *************** *** 39,43 **** <br /> <br /> ! <label>{SETTINGS_BBOFFLINE} {BBOFFLINE_TEXT}</label> {BBOFFLINE_HELP}<br /> {SETTINGS_SAVE} {END_FORM} --- 66,72 ---- <br /> <br /> ! <label>{SETTINGS_BBOFFLINE} {BBOFFLINE_TEXT}</label> {BBOFFLINE_HELP} ! <br /> ! <br /> {SETTINGS_SAVE} {END_FORM} |
From: Eloi G. <ada...@us...> - 2004-10-03 23:18:08
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv397/class Modified Files: Manager.php Log Message: Fixed Bug Report [1038108] "1.0.0 CVS: Off-site Avatar checking needed" Remote Avatars are now disabled by default & admins are now warned about the dangers of using them. Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** Manager.php 3 Oct 2004 06:58:21 -0000 1.55 --- Manager.php 3 Oct 2004 23:17:39 -0000 1.56 *************** *** 890,893 **** --- 890,894 ---- $tags['USE_AVATARS_TEXT'] = $_SESSION['translate']->it('Allow user-selected Avatars to be displayed in messages'); $tags['USE_OFFSITE_AVATARS_TEXT'] = $_SESSION['translate']->it('Allow user-selected Avatar URLs to be displayed in messages'); + $tags['USE_OFFSITE_AVATARS_HELP'] = $_SESSION['translate']->it('Not recommended').CLS_help::show_link('phpwsbb', 'remote_avatars'); $tags['USE_SIGNATURES_TEXT'] = $_SESSION['translate']->it('Allow user-created Signatures to be displayed in messages'); |
From: Eloi G. <ada...@us...> - 2004-10-03 23:18:08
|
Update of /cvsroot/phpwsbb/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv397/conf Modified Files: help.php Log Message: Fixed Bug Report [1038108] "1.0.0 CVS: Off-site Avatar checking needed" Remote Avatars are now disabled by default & admins are now warned about the dangers of using them. Index: help.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/help.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** help.php 13 Sep 2004 21:41:55 -0000 1.12 --- help.php 3 Oct 2004 23:17:39 -0000 1.13 *************** *** 45,47 **** --- 45,50 ---- $remove_all_monitors_content = 'This will clear all monitors so you will no longer be monitoring any threads.'; + $remote_avatars = 'Remote Avatars'; + $remote_avatars_content = 'You can allow users to specify the address of an image that\'s not hosted on your site to be used as an avatar.<br /><br />While this saves you storage space and bandwidth, it also takes the control over what is displayed out of your hands. Users can insert images with large filesizes, jpeg exploits, obscenities, etc..<br /><br />For this reason we recommend that you <u>do not</u> use this feature.'; + ?> |
From: Eloi G. <ada...@us...> - 2004-10-03 23:18:08
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv397/boost Modified Files: install.sql update.php Log Message: Fixed Bug Report [1038108] "1.0.0 CVS: Off-site Avatar checking needed" Remote Avatars are now disabled by default & admins are now warned about the dangers of using them. Index: install.sql =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.sql,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** install.sql 30 Sep 2004 04:18:31 -0000 1.21 --- install.sql 3 Oct 2004 23:17:39 -0000 1.22 *************** *** 93,97 **** bboffline smallint NOT NULL default '0', use_avatars smallint NOT NULL default '1', ! use_offsite_avatars smallint NOT NULL default '1', max_avatar_height int NOT NULL default '90', max_avatar_width int NOT NULL default '90', --- 93,97 ---- bboffline smallint NOT NULL default '0', use_avatars smallint NOT NULL default '1', ! use_offsite_avatars smallint NOT NULL default '0', max_avatar_height int NOT NULL default '90', max_avatar_width int NOT NULL default '90', *************** *** 99,103 **** use_signatures smallint NOT NULL default '1' ); ! INSERT INTO mod_phpwsbb_settings VALUES (1, 1, NULL, 'The thread [name] has been updated. Go to [url] to view it.', 0, 1, 1, 'Forums', 1, 'Latest Forum Posts', 5, 0, 1, 1, 90, 90, 6, 1); CREATE TABLE mod_phpwsbb_user_ranks ( --- 99,103 ---- use_signatures smallint NOT NULL default '1' ); ! INSERT INTO mod_phpwsbb_settings VALUES (1, 1, NULL, 'The thread [name] has been updated. Go to [url] to view it.', 0, 1, 1, 'Forums', 1, 'Latest Forum Posts', 5, 0, 1, 0, 90, 90, 6, 1); CREATE TABLE mod_phpwsbb_user_ranks ( Index: update.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/update.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** update.php 30 Sep 2004 03:59:36 -0000 1.43 --- update.php 3 Oct 2004 23:17:39 -0000 1.44 *************** *** 308,312 **** $content .= 'There was a problem modifying the phpwsBB threads table.<br />'; ! if($status = $GLOBALS['core']->query('ALTER TABLE mod_phpwsbb_settings ADD use_avatars smallint NOT NULL default "1", ADD use_offsite_avatars smallint NOT NULL default "1", ADD max_avatar_height int NOT NULL default "90", ADD max_avatar_width int NOT NULL default "90", ADD max_avatar_size int NOT NULL default "6", ADD use_signatures smallint NOT NULL default "1"', TRUE)) $content .= 'phpwsBB settings table successfully modified.<br />'; else --- 308,312 ---- $content .= 'There was a problem modifying the phpwsBB threads table.<br />'; ! if($status = $GLOBALS['core']->query('ALTER TABLE mod_phpwsbb_settings ADD use_avatars smallint NOT NULL default "1", ADD use_offsite_avatars smallint NOT NULL default "0", ADD max_avatar_height int NOT NULL default "90", ADD max_avatar_width int NOT NULL default "90", ADD max_avatar_size int NOT NULL default "6", ADD use_signatures smallint NOT NULL default "1"', TRUE)) $content .= 'phpwsBB settings table successfully modified.<br />'; else |
From: Eloi G. <ada...@us...> - 2004-10-03 07:44:27
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4457/class Modified Files: Manager.php Log Message: Fixed Bug Report [1039272] "1.0.0 CVS: Monitors cleared message persists" Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Manager.php 3 Oct 2004 03:31:13 -0000 1.54 --- Manager.php 3 Oct 2004 06:58:21 -0000 1.55 *************** *** 1125,1130 **** function action() { ! if(PHPWS_Message::isMessage($this->notice)) $this->notice->display(); $this->managerAction(); --- 1125,1132 ---- function action() { ! if(PHPWS_Message::isMessage($this->notice)) { $this->notice->display(); + $this->notice = null; + } $this->managerAction(); |
From: Eloi G. <ada...@us...> - 2004-10-03 04:09:01
|
Update of /cvsroot/phpwsbb/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9800/templates Modified Files: view.tpl Log Message: Got rid of class="smalltext" in action list Index: view.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/view.tpl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** view.tpl 30 Sep 2004 18:50:28 -0000 1.16 --- view.tpl 3 Oct 2004 04:08:51 -0000 1.17 *************** *** 49,53 **** <tr{BG}> <td>{NAV}</td> ! <td class="smalltext"> | {QUOTE} <!-- BEGIN NOTE --> --- 49,53 ---- <tr{BG}> <td>{NAV}</td> ! <td> | {QUOTE} <!-- BEGIN NOTE --> |
From: Eloi G. <ada...@us...> - 2004-10-03 03:58:16
|
Update of /cvsroot/phpwsbb/phpwsbb/templates/threads In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7463/templates/threads Modified Files: list.tpl Log Message: Bug Report [1038282]. Got rid of obsolete class="smalltext" attriutes Index: list.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/threads/list.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** list.tpl 19 Sep 2004 18:44:32 -0000 1.5 --- list.tpl 3 Oct 2004 03:58:04 -0000 1.6 *************** *** 10,16 **** <th class="smalltext" scope="col"><b>{SELECT_LABEL}</b></th> <!-- END SELECT_LABEL --> ! <th width="100%" class="smalltext" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{REPLIES_LABEL}</b></th> ! <th valign="middle" nowrap="nowrap" class="smalltext" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} --- 10,16 ---- <th class="smalltext" scope="col"><b>{SELECT_LABEL}</b></th> <!-- END SELECT_LABEL --> ! <th width="100%" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" style="text-align:center" scope="col"><b>{REPLIES_LABEL}</b></th> ! <th valign="middle" nowrap="nowrap" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} |
From: Eloi G. <ada...@us...> - 2004-10-03 03:58:15
|
Update of /cvsroot/phpwsbb/phpwsbb/templates/forums In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7463/templates/forums Modified Files: list.tpl Log Message: Bug Report [1038282]. Got rid of obsolete class="smalltext" attriutes Index: list.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/forums/list.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** list.tpl 19 Sep 2004 18:44:32 -0000 1.5 --- list.tpl 3 Oct 2004 03:58:04 -0000 1.6 *************** *** 10,17 **** <th class="smalltext" scope="col"><b>{SELECT_LABEL}</b></th> <!-- END SELECT_LABEL --> ! <th width="60%" class="smalltext" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{THREADS_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{POSTS_LABEL}</b></th> ! <th width="30%" valign="middle" nowrap="nowrap" class="smalltext" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} --- 10,17 ---- <th class="smalltext" scope="col"><b>{SELECT_LABEL}</b></th> <!-- END SELECT_LABEL --> ! <th width="60%" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" style="text-align:center" scope="col"><b>{THREADS_LABEL}</b></th> ! <th valign="middle" style="text-align:center" scope="col"><b>{POSTS_LABEL}</b></th> ! <th width="30%" valign="middle" nowrap="nowrap" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} |
From: Eloi G. <ada...@us...> - 2004-10-03 03:38:47
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27172/class Modified Files: Manager.php Log Message: Took out square brackets in Forum listing. Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** Manager.php 26 Sep 2004 05:25:18 -0000 1.52 --- Manager.php 3 Oct 2004 02:47:48 -0000 1.53 *************** *** 309,313 **** /* "Edit Profile" button */ if($_SESSION['OBJ_user']->user_id) ! $GLOBALS['CNT_phpwsbb']['content'] .= '<div align="right">' . '[<a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings">' . $_SESSION['translate']->it('My Forum Settings') . '</a>]</div>'; $this->setClass('PHPWSBB_Forum'); --- 309,313 ---- /* "Edit Profile" button */ if($_SESSION['OBJ_user']->user_id) ! $GLOBALS['CNT_phpwsbb']['content'] .= '<div align="right">|<a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings">' . $_SESSION['translate']->it('My Forum Settings') . '</a>|</div>'; $this->setClass('PHPWSBB_Forum'); |
From: Eloi G. <ada...@us...> - 2004-10-03 03:31:24
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2553/class Modified Files: Manager.php Log Message: Fixed Bug Report [1038110] "1.0.0 CVS: Edit other user's settings" Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** Manager.php 3 Oct 2004 02:47:48 -0000 1.53 --- Manager.php 3 Oct 2004 03:31:13 -0000 1.54 *************** *** 666,669 **** --- 666,670 ---- $form->add('module', 'hidden', 'phpwsbb'); + $form->add('user', 'hidden', $id); $form->add('PHPWSBB_MAN_OP', 'hidden', 'saveusersettings'); *************** *** 760,770 **** } } ! ! if($GLOBALS['core']->sqlUpdate($data, 'mod_phpwsbb_user_info', 'user_id', $_SESSION['OBJ_user']->user_id)) { ! // This had to be moved to the user settings table. ! // Use of setUserVar creates too many SELECTs to retrieve the values ! // ex: #queries = #users * #variables ! // Using a summary table instead. ! // if( $_SESSION['OBJ_user']->setUserVar('monitordefault', $monitordefault, NULL, 'phpwsbb') && $_SESSION['OBJ_user']->setUserVar('suspendmonitors', $suspendmonitors, NULL, 'phpwsbb')) { $title = $_SESSION['translate']->it('Settings Saved'); $content = $this->_menu() . $_SESSION['translate']->it("Your settings have been successfully saved."); --- 761,766 ---- } } ! ! if($GLOBALS['core']->sqlUpdate($data, 'mod_phpwsbb_user_info', 'user_id', $_POST['user'])) { $title = $_SESSION['translate']->it('Settings Saved'); $content = $this->_menu() . $_SESSION['translate']->it("Your settings have been successfully saved."); |
From: Eloi G. <ada...@us...> - 2004-10-03 03:14:11
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32250/class Modified Files: Message.php Log Message: Disabled the option to send a private message to yourself. Bug Report [1038253] Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** Message.php 25 Sep 2004 04:46:03 -0000 1.67 --- Message.php 3 Oct 2004 03:13:40 -0000 1.68 *************** *** 143,147 **** $posteremail = $this->_guestemail; } else { ! if ($_SESSION['OBJ_user']->username) { if ($GLOBALS['core']->moduleExists('notes')) { $notesinfo = PHPWS_Boost::getVersionInfo('notes'); --- 143,147 ---- $posteremail = $this->_guestemail; } else { ! if ($_SESSION['OBJ_user']->username && $_SESSION['OBJ_user']->username!=$this->getOwner()) { if ($GLOBALS['core']->moduleExists('notes')) { $notesinfo = PHPWS_Boost::getVersionInfo('notes'); |
From: Eloi G. <ada...@us...> - 2004-10-03 02:40:37
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25509/class Modified Files: Thread.php Log Message: Bug Report [1038282]. Changed capitalization of "Author" & "Message" Index: Thread.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** Thread.php 25 Sep 2004 17:49:09 -0000 1.62 --- Thread.php 3 Oct 2004 02:39:10 -0000 1.63 *************** *** 260,265 **** } ! $tags['AUTHOR'] = $_SESSION['translate']->it('AUTHOR'); ! $tags['MESSAGE'] = $_SESSION['translate']->it('MESSAGE'); if($_SESSION['OBJ_user']->user_id) $tags['MYPROFILE'] = '<a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings">' . $_SESSION['translate']->it('My Forum Settings') . '</a>'; --- 260,265 ---- } ! $tags['AUTHOR'] = $_SESSION['translate']->it('Author'); ! $tags['MESSAGE'] = $_SESSION['translate']->it('Message'); if($_SESSION['OBJ_user']->user_id) $tags['MYPROFILE'] = '<a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings">' . $_SESSION['translate']->it('My Forum Settings') . '</a>'; |
From: Eloi G. <ada...@us...> - 2004-10-03 02:40:28
|
Update of /cvsroot/phpwsbb/phpwsbb/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25509/lang Modified Files: phpwsbb.en.lng Log Message: Bug Report [1038282]. Changed capitalization of "Author" & "Message" Index: phpwsbb.en.lng =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/lang/phpwsbb.en.lng,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** phpwsbb.en.lng 17 Sep 2004 15:53:34 -0000 1.19 --- phpwsbb.en.lng 3 Oct 2004 02:39:11 -0000 1.20 *************** *** 24,27 **** --- 24,28 ---- a:|:Are you sure you want to delete this message?:|:Are you sure you want to delete this message? a:|:Are you sure you want to delete this topic?:|:Are you sure you want to delete this topic? + a:|:Author:|:Author a:|:Automatically monitor threads you post to?:|:Automatically monitor threads you post to? a:|:Back to Forums:|:Back to Forums |
From: Eloi G. <ada...@us...> - 2004-10-03 02:29:57
|
Update of /cvsroot/phpwsbb/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23903/templates Modified Files: edit_settings.tpl edit_user_settings.tpl Log Message: Fixed Bug Report [1038307] "1.0.0 CVS: label FOR=" Changed all instances of "FOR=" to "for=" Index: edit_user_settings.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/edit_user_settings.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** edit_user_settings.tpl 19 Sep 2004 18:44:32 -0000 1.5 --- edit_user_settings.tpl 3 Oct 2004 02:28:34 -0000 1.6 *************** *** 13,17 **** </label> <br /> ! <label FOR="SETTINGS_signature">{SIGNATURE_LABEL}</label><br /> {SIGNATURE_HELP}<br /> {SETTINGS_SIGNATURE}<br /> --- 13,17 ---- </label> <br /> ! <label for="SETTINGS_signature">{SIGNATURE_LABEL}</label><br /> {SIGNATURE_HELP}<br /> {SETTINGS_SIGNATURE}<br /> *************** *** 37,41 **** <b>{IMAGE_MGMT_TITLE}</b> </div> ! <b><label FOR="SETTINGS_avatar_file">{REMOTE_AVATAR_LABEL}</label></b><br /> {REMOTE_AVATAR_HELP}<br /> {SETTINGS_AVATAR_FILE}<br /> --- 37,41 ---- <b>{IMAGE_MGMT_TITLE}</b> </div> ! <b><label for="SETTINGS_avatar_file">{REMOTE_AVATAR_LABEL}</label></b><br /> {REMOTE_AVATAR_HELP}<br /> {SETTINGS_AVATAR_FILE}<br /> Index: edit_settings.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/edit_settings.tpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** edit_settings.tpl 19 Sep 2004 18:44:29 -0000 1.8 --- edit_settings.tpl 3 Oct 2004 02:28:34 -0000 1.9 *************** *** 5,9 **** <label>{SETTINGS_MONITOR_POSTS} {MONITOR_POSTS_TEXT}</label> {MONITOR_POSTS_HELP}<br /> <label>{SETTINGS_ALLOW_USER_MONITORS} {ALLOW_USER_MONITORS_TEXT}</label><br /> ! <label FOR="SETTINGS_email_text">{EMAIL_TEXT_TEXT}</label>:  {EMAIL_TEXT_HELP}<br />{SETTINGS_EMAIL_TEXT}<br /> <label>{SETTINGS_SHOWFORUMSBLOCK} {SHOWFORUMSBLOCK_TEXT}</label><br /> --- 5,9 ---- <label>{SETTINGS_MONITOR_POSTS} {MONITOR_POSTS_TEXT}</label> {MONITOR_POSTS_HELP}<br /> <label>{SETTINGS_ALLOW_USER_MONITORS} {ALLOW_USER_MONITORS_TEXT}</label><br /> ! <label for="SETTINGS_email_text">{EMAIL_TEXT_TEXT}</label>:  {EMAIL_TEXT_HELP}<br />{SETTINGS_EMAIL_TEXT}<br /> <label>{SETTINGS_SHOWFORUMSBLOCK} {SHOWFORUMSBLOCK_TEXT}</label><br /> |
From: Eloi G. <ada...@us...> - 2004-10-02 10:44:13
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1610/class Modified Files: Forum.php Log Message: Fixed Bug Report [1038349] "1.0.0 CVS: moderators listed twice" Index: Forum.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Forum.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** Forum.php 23 Sep 2004 17:44:31 -0000 1.31 --- Forum.php 2 Oct 2004 10:43:59 -0000 1.32 *************** *** 270,274 **** } // Create list of eligible moderators (those that can edit messages) ! $eligible_mods = $GLOBALS['core']->query('SELECT u.username,u.user_id FROM ' . $GLOBALS['core']->tbl_prefix . 'mod_users AS u LEFT JOIN ' . $GLOBALS['core']->tbl_prefix . 'mod_user_uservar AS v ON ( v.user_id = u.user_id) WHERE u.deity OR (u.admin_switch AND v.varName="MOD_phpwsbb" AND (v.varValue LIKE "%edit_forums%" OR v.varValue LIKE "%edit_messages%")) ORDER BY u.username ASC'); if($eligible_mods) { $tags['MODERATORS_LABEL'] = $_SESSION['translate']->it('Choose moderators for this forum'); --- 270,274 ---- } // Create list of eligible moderators (those that can edit messages) ! $eligible_mods = $GLOBALS['core']->query('SELECT u.username,u.user_id FROM ' . $GLOBALS['core']->tbl_prefix . 'mod_users AS u LEFT JOIN ' . $GLOBALS['core']->tbl_prefix . 'mod_user_uservar AS v ON ( v.user_id = u.user_id) WHERE u.deity OR (u.admin_switch AND v.varName="MOD_phpwsbb" AND (v.varValue LIKE "%edit_forums%" OR v.varValue LIKE "%edit_messages%")) GROUP BY u.username ORDER BY u.username ASC'); if($eligible_mods) { $tags['MODERATORS_LABEL'] = $_SESSION['translate']->it('Choose moderators for this forum'); |
From: Eloi G. <ada...@us...> - 2004-10-01 06:54:21
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28506/boost Modified Files: install.php Log Message: Fixed Bug Reports [1038264] & [1038092] "1.0.0 CVS: New install doesn't copy images" Index: install.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** install.php 13 Sep 2004 21:41:54 -0000 1.22 --- install.php 1 Oct 2004 06:54:12 -0000 1.23 *************** *** 49,68 **** /* Create image directory */ ! PHPWS_File::makeDir($GLOBALS['core']->home_dir . 'images/phpwsbb'); ! if (is_dir($GLOBALS['core']->home_dir . 'images/phpwsbb')) { ! $content .= 'phpwsBB image directory ' . $GLOBALS['core']->home_dir . 'images/phpwsbb/ successfully created!<br />'; ! /* Copy image files */ ! $images = array(); ! if($handle = opendir(PHPWS_SOURCE_DIR . 'mod/phpwsbb/img/')) { ! while (false !== ($file = readdir($handle))) { ! //if ($file != '.' && $file != '..') ! if (is_file(PHPWS_SOURCE_DIR . 'mod/phpwsbb/img/${file}')) ! if(!copy(PHPWS_SOURCE_DIR . 'mod/phpwsbb/img/${file}', $GLOBALS['core']->home_dir . 'images/phpwsbb/${file}')) ! $content .= 'Failed to copy ${file}<br />\n'; ! } ! } ! } else ! $content .= 'phpwsBB could not create the image directory: ' . $GLOBALS['core']->home_dir . 'images/phpwsbb/<br />You will have to do this manually!<br />'; ! ! ?> --- 49,58 ---- /* Create image directory */ ! $phpwsbb_sourcedir = PHPWS_SOURCE_DIR . 'mod/phpwsbb/img/'; ! $phpwsbb_imagedir = $GLOBALS['core']->home_dir . 'images/phpwsbb/'; ! if(PHPWS_File::recursiveFileCopy($phpwsbb_sourcedir, $phpwsbb_imagedir)) ! $content .= 'phpwsBB image directory ' . $phpwsbb_imagedir . ' successfully created!<br />'; ! else ! $content .= 'phpwsBB could not create the image directory: ' . $phpwsbb_imagedir . '<br />You will have to do this manually!<br />'; ! ?> \ No newline at end of file |
From: Eloi G. <ada...@us...> - 2004-09-30 18:50:40
|
Update of /cvsroot/phpwsbb/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29451/templates Modified Files: view.tpl Log Message: Fixed Bug Report [1037517] "1.0.0 CVS: view.tpl typos" Index: view.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/view.tpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** view.tpl 17 Sep 2004 15:53:35 -0000 1.15 --- view.tpl 30 Sep 2004 18:50:28 -0000 1.16 *************** *** 12,16 **** <!-- END AVATAR --> <br /> - <!-- END BAN_USER --> <!-- BEGIN POSTCOUNT --> {POSTS}<br /> --- 12,15 ---- |
From: Eloi G. <ada...@us...> - 2004-09-30 04:30:25
|
Update of /cvsroot/phpwsbb/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19852/templates Modified Files: view_forum_bottom.tpl view_forum_top.tpl Log Message: Fixed Bug Report [1037480] "1.0.0 CVS: Extra square brackets" Index: view_forum_top.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/view_forum_top.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** view_forum_top.tpl 25 Sep 2004 04:46:03 -0000 1.2 --- view_forum_top.tpl 30 Sep 2004 04:30:15 -0000 1.3 *************** *** 8,24 **** <span class="smalltext"> <!-- BEGIN NEW --> ! | {NEW}] <!-- END NEW --> <!-- BEGIN EDIT --> ! | {EDIT}] <!-- END EDIT --> <!-- BEGIN DELETE --> ! | {DELETE}] <!-- END DELETE --> <!-- BEGIN HIDE --> ! | {HIDE}] <!-- END HIDE --> <!-- BEGIN PROFILE --> ! | {MYPROFILE}] <!-- END PROFILE --> | --- 8,24 ---- <span class="smalltext"> <!-- BEGIN NEW --> ! | {NEW} <!-- END NEW --> <!-- BEGIN EDIT --> ! | {EDIT} <!-- END EDIT --> <!-- BEGIN DELETE --> ! | {DELETE} <!-- END DELETE --> <!-- BEGIN HIDE --> ! | {HIDE} <!-- END HIDE --> <!-- BEGIN PROFILE --> ! | {MYPROFILE} <!-- END PROFILE --> | Index: view_forum_bottom.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/view_forum_bottom.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** view_forum_bottom.tpl 25 Sep 2004 04:46:03 -0000 1.3 --- view_forum_bottom.tpl 30 Sep 2004 04:30:15 -0000 1.4 *************** *** 2,18 **** <span class="smalltext"> <!-- BEGIN NEW --> ! | {NEW}] <!-- END NEW --> <!-- BEGIN EDIT --> ! | {EDIT}] <!-- END EDIT --> <!-- BEGIN DELETE --> ! | {DELETE}] <!-- END DELETE --> <!-- BEGIN HIDE --> ! | {HIDE}] <!-- END HIDE --> <!-- BEGIN PROFILE --> ! | {MYPROFILE}] <!-- END PROFILE --> | --- 2,18 ---- <span class="smalltext"> <!-- BEGIN NEW --> ! | {NEW} <!-- END NEW --> <!-- BEGIN EDIT --> ! | {EDIT} <!-- END EDIT --> <!-- BEGIN DELETE --> ! | {DELETE} <!-- END DELETE --> <!-- BEGIN HIDE --> ! | {HIDE} <!-- END HIDE --> <!-- BEGIN PROFILE --> ! | {MYPROFILE} <!-- END PROFILE --> | |
From: Eloi G. <ada...@us...> - 2004-09-30 04:18:52
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18115/boost Modified Files: install.sql Log Message: Fixed Bug Report [1037336] "1.0.0 CVS: Can't add new forum" Index: install.sql =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.sql,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** install.sql 26 Sep 2004 05:11:54 -0000 1.20 --- install.sql 30 Sep 2004 04:18:31 -0000 1.21 *************** *** 20,23 **** --- 20,24 ---- lastpost_topic_id int NOT NULL default '0', lastpost_post_id int NOT NULL default '0', + moderators varchar(40) NOT NULL default '', PRIMARY KEY (id) ); |
From: Eloi G. <ada...@us...> - 2004-09-30 03:59:57
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14740/boost Modified Files: update.php Log Message: Fixed Bug Report [1037476] Missing ) in update.php Index: update.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/update.php,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** update.php 26 Sep 2004 05:11:54 -0000 1.42 --- update.php 30 Sep 2004 03:59:36 -0000 1.43 *************** *** 284,288 **** if($status = $GLOBALS['core']->query("CREATE TABLE mod_phpwsbb_user_ranks (rank_id int DEFAULT '0' NOT NULL, rank_title varchar(50) NOT NULL, rank_min smallint DEFAULT '0' NOT NULL, rank_special smallint DEFAULT '0', rank_image varchar(255), rank_image_caption varchar(255), PRIMARY KEY (rank_id))", TRUE) && $status = $GLOBALS['core']->sqlInsert(array('rank_title'=>'Site Admin','rank_min'=>'0','rank_special'=>'1','rank_image'=>NULL,'rank_image_caption'=>NULL), 'mod_phpwsbb_user_ranks') ! && $status = $GLOBALS['core']->sqlInsert(array('rank_title'=>'Member','rank_min'=>'0','rank_special'=>'0','rank_image'=>NULL,'rank_image_caption'=>NULL), 'mod_phpwsbb_user_ranks') $content .= 'Successfully created the phpwsBB User Ranking table.<br />'; else --- 284,288 ---- if($status = $GLOBALS['core']->query("CREATE TABLE mod_phpwsbb_user_ranks (rank_id int DEFAULT '0' NOT NULL, rank_title varchar(50) NOT NULL, rank_min smallint DEFAULT '0' NOT NULL, rank_special smallint DEFAULT '0', rank_image varchar(255), rank_image_caption varchar(255), PRIMARY KEY (rank_id))", TRUE) && $status = $GLOBALS['core']->sqlInsert(array('rank_title'=>'Site Admin','rank_min'=>'0','rank_special'=>'1','rank_image'=>NULL,'rank_image_caption'=>NULL), 'mod_phpwsbb_user_ranks') ! && $status = $GLOBALS['core']->sqlInsert(array('rank_title'=>'Member','rank_min'=>'0','rank_special'=>'0','rank_image'=>NULL,'rank_image_caption'=>NULL), 'mod_phpwsbb_user_ranks')) $content .= 'Successfully created the phpwsBB User Ranking table.<br />'; else |
From: Eloi G. <ada...@us...> - 2004-09-26 05:25:36
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4286/class Modified Files: Manager.php Log Message: Ajusted the ranking system's definition of a moderator Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** Manager.php 23 Sep 2004 19:02:27 -0000 1.51 --- Manager.php 26 Sep 2004 05:25:18 -0000 1.52 *************** *** 1346,1350 **** } else { ! $result['monitordefault'] = '1'; $result['suspendmonitors'] = '0'; } --- 1346,1350 ---- } else { ! $result['monitordefault'] = '0'; $result['suspendmonitors'] = '0'; } *************** *** 1386,1390 **** // Determine user's rank if($result['posts']&& $this->_user_ranks) { ! $isSpecialuser = (isset($result['deity']) && $result['deity']) || (isset($result['varValue']) && stristr($result['varValue'], 'lock_threads')); foreach ($this->_user_ranks as $rank) if(($rank['rank_min']<=$result['posts']) --- 1386,1390 ---- // Determine user's rank if($result['posts']&& $this->_user_ranks) { ! $isSpecialuser = (isset($result['deity']) && $result['deity']) || (isset($result['varValue']) && (stristr($result['varValue'], 'edit_forums') || stristr($result['varValue'], 'edit_messages'))); foreach ($this->_user_ranks as $rank) if(($rank['rank_min']<=$result['posts']) |