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: class_moderation.php 4596 2009-12-10 23:58:08Z RyanGordon $
| * $Id: class_moderation.php 4736 2010-01-23 23:18:59Z Huji $
|
*/
class Moderation
| */
class Moderation
|
Zeile 752 | Zeile 752 |
---|
"uid" => $thread['uid'], "username" => $db->escape_string($thread['username']), "dateline" => $thread['dateline'],
|
"uid" => $thread['uid'], "username" => $db->escape_string($thread['username']), "dateline" => $thread['dateline'],
|
| "firstpost" => $thread['firstpost'],
|
"lastpost" => $thread['lastpost'], "lastposteruid" => $thread['lastposteruid'], "lastposter" => $db->escape_string($thread['lastposter']),
| "lastpost" => $thread['lastpost'], "lastposteruid" => $thread['lastposteruid'], "lastposter" => $db->escape_string($thread['lastposter']),
|
Zeile 1101 | Zeile 1102 |
---|
$pids = array_map('intval', $pids);
$pids_list = implode(',', $pids);
|
$pids = array_map('intval', $pids);
$pids_list = implode(',', $pids);
|
| // Get the icon for the first split post $query = $db->simple_select("posts", "icon", "pid=".intval($pids[0])); $icon = $db->fetch_array($query);
|
if($destination_tid == 0) {
| if($destination_tid == 0) {
|
Zeile 1111 | Zeile 1116 |
---|
$query = array( "fid" => $moveto, "subject" => $newsubject,
|
$query = array( "fid" => $moveto, "subject" => $newsubject,
|
"icon" => intval($thread['icon']),
| "icon" => intval($icon['icon']),
|
"uid" => intval($thread['uid']), "username" => $db->escape_string($thread['username']), "dateline" => intval($thread['dateline']),
| "uid" => intval($thread['uid']), "username" => $db->escape_string($thread['username']), "dateline" => intval($thread['dateline']),
|