Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* $Id: online.php 2194 2006-09-03 12:46:22Z chris $
| * $Id: online.php 2312 2006-10-02 02:34:49Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 209 | Zeile 209 |
---|
} if($tidsql) {
|
} if($tidsql) {
|
$query = $db->simple_select(TABLE_PREFIX."threads", "fid,tid,subject", "tid IN(0$tidsql) $fidnot");
| $query = $db->simple_select(TABLE_PREFIX."threads", "fid,tid,subject,visible", "tid IN(0$tidsql) $fidnot");
|
while($thread = $db->fetch_array($query)) {
|
while($thread = $db->fetch_array($query)) {
|
$threads[$thread['tid']] = htmlspecialchars_uni($parser->parse_badwords($thread['subject'])); $fidsql .= ",$thread[fid]";
| if(is_moderator($thread['fid']) != "no" || $thread['visible'] != '0') { $threads[$thread['tid']] = htmlspecialchars_uni($parser->parse_badwords($thread['subject'])); $fidsql .= ",$thread[fid]"; }
|
} } if($fidsql)
| } } if($fidsql)
|
Zeile 411 | Zeile 414 |
---|
$locationname = $lang->resending_account_activation; break; case "member_lostpw":
|
$locationname = $lang->resending_account_activation; break; case "member_lostpw":
|
$locationname = $lang->retrieving_lost_pw;
| $locationname = $lang->member_lostpw;
|
break; // memberlist.php functions case "memberlist":
| break; // memberlist.php functions case "memberlist":
|