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 5380 2011-02-21 12:04:43Z Tomm $
| * $Id: modlog.php 5453 2011-04-21 23:58:33Z jammerx2 $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 216 | Zeile 216 |
---|
$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 227 | 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 235 | 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>";
|
} }
| } }
|