Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: modlog.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id: modlog.php 5746 2012-02-03 10:03:25Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 212 | Zeile 212 |
---|
while($logitem = $db->fetch_array($query)) { $information = '';
|
while($logitem = $db->fetch_array($query)) { $information = '';
|
| $logitem['action'] = htmlspecialchars_uni($logitem['action']);
|
$logitem['dateline'] = date("jS M Y, G:i", $logitem['dateline']); $trow = alt_trow(); $username = format_name($logitem['username'], $logitem['usergroup'], $logitem['displaygroup']);
|
$logitem['dateline'] = date("jS M Y, G:i", $logitem['dateline']); $trow = alt_trow(); $username = format_name($logitem['username'], $logitem['usergroup'], $logitem['displaygroup']);
|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid']);
| $logitem['profilelink'] = build_profile_link($username, $logitem['uid'], "_blank");
|
if($logitem['tsubject']) { $information = "<strong>{$lang->thread}</strong> <a href=\"../".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
| if($logitem['tsubject']) { $information = "<strong>{$lang->thread}</strong> <a href=\"../".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
|
Zeile 226 | Zeile 227 |
---|
} if($logitem['psubject']) {
|
} if($logitem['psubject']) {
|
$information .= "<strong>{$lang->post}</strong> <a href=\"../".get_post_link($logitem['pid'])."#pid{$logitem['pid']}\">".htmlspecialchars_uni($logitem['psubject'])."</a>";
| $information .= "<strong>{$lang->post}</strong> <a href=\"../".get_post_link($logitem['pid'])."#pid{$logitem['pid']}\" target=\"_blank\">".htmlspecialchars_uni($logitem['psubject'])."</a>";
|
}
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject'])
| }
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject'])
|
Zeile 234 | Zeile 235 |
---|
$data = unserialize($logitem['data']); if($data['uid']) {
|
$data = unserialize($logitem['data']); if($data['uid']) {
|
$information = $lang->user_info." <a href=\"".get_profile_link($data['uid'])."\">".htmlspecialchars_uni($data['username'])."</a>";
| $information = $lang->user_info." <a href=\"".get_profile_link($data['uid'])."\" target=\"_blank\">".htmlspecialchars_uni($data['username'])."</a>";
|
} }
| } }
|