Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: xmlhttp.php 4117 2008-08-15 15:38:41Z Tikitiki $
| * $Id: xmlhttp.php 4273 2008-11-17 00:36:29Z Tikitiki $
|
*/
/**
| */
/**
|
Zeile 41 | Zeile 41 |
---|
// Send no cache headers header("Expires: Sat, 1 Jan 2000 01:00:00 GMT");
|
// Send no cache headers header("Expires: Sat, 1 Jan 2000 01:00:00 GMT");
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
| header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
|
header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache");
| header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache");
|
Zeile 595 | Zeile 595 |
---|
// Remove multiple spaces from the username $username = preg_replace("#\s{2,}#", " ", $username);
|
// Remove multiple spaces from the username $username = preg_replace("#\s{2,}#", " ", $username);
|
| if(empty($username)) { echo "<fail>{$lang->banned_characters_username}</fail>"; exit; }
|
header("Content-type: text/xml; charset={$charset}");
| header("Content-type: text/xml; charset={$charset}");
|
Zeile 673 | Zeile 679 |
---|
); $timecut = TIME_NOW - $mybb->settings['wolcutoff']; $query = $db->simple_select("users", "uid, username, usergroup, displaygroup, lastactive, lastvisit, invisible", "uid IN ({$mybb->user['buddylist']})", $query_options);
|
); $timecut = TIME_NOW - $mybb->settings['wolcutoff']; $query = $db->simple_select("users", "uid, username, usergroup, displaygroup, lastactive, lastvisit, invisible", "uid IN ({$mybb->user['buddylist']})", $query_options);
|
$buddy_array = array();
| $online = array(); $offline = array();
|
while($buddy = $db->fetch_array($query)) { $buddy_name = format_name($buddy['username'], $buddy['usergroup'], $buddy['displaygroup']);
| while($buddy = $db->fetch_array($query)) { $buddy_name = format_name($buddy['username'], $buddy['usergroup'], $buddy['displaygroup']);
|