Zeile 11 | Zeile 11 |
---|
define("IN_MYBB", 1); define('THIS_SCRIPT', 'printthread.php');
|
define("IN_MYBB", 1); define('THIS_SCRIPT', 'printthread.php');
|
$templatelist = "printthread,printthread_post,forumdisplay_password_wrongpass,forumdisplay_password,printthread_multipage,printthread_multipage_page,printthread_multipage_page_current";
| $templatelist = "printthread,printthread_post,printthread_nav,forumdisplay_password_wrongpass,forumdisplay_password,printthread_multipage,printthread_multipage_page,printthread_multipage_page_current";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
|
Zeile 25 | Zeile 25 |
---|
$thread = get_thread($mybb->get_input('tid', MyBB::INPUT_INT));
|
$thread = get_thread($mybb->get_input('tid', MyBB::INPUT_INT));
|
if(!$thread)
| if(!$thread || $thread['visible'] == -1)
|
{ error($lang->error_invalidthread); }
| { error($lang->error_invalidthread); }
|
Zeile 142 | Zeile 142 |
---|
"); while($postrow = $db->fetch_array($query)) {
|
"); while($postrow = $db->fetch_array($query)) {
|
if($postrow['userusername']) { $postrow['username'] = $postrow['userusername']; } $postrow['subject'] = htmlspecialchars_uni($parser->parse_badwords($postrow['subject'])); $postrow['date'] = my_date($mybb->settings['dateformat'], $postrow['dateline'], null, 0); $postrow['profilelink'] = build_profile_link($postrow['username'], $postrow['uid']);
| |
$parser_options = array( "allow_html" => $forum['allowhtml'], "allow_mycode" => $forum['allowmycode'],
| $parser_options = array( "allow_html" => $forum['allowhtml'], "allow_mycode" => $forum['allowmycode'],
|
Zeile 165 | Zeile 158 |
---|
}
if($mybb->user['showimages'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestimages'] != 1 && $mybb->user['uid'] == 0)
|
}
if($mybb->user['showimages'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestimages'] != 1 && $mybb->user['uid'] == 0)
|
{
| {
|
$parser_options['allow_imgcode'] = 0; }
| $parser_options['allow_imgcode'] = 0; }
|
Zeile 173 | Zeile 166 |
---|
{ $parser_options['allow_videocode'] = 0; }
|
{ $parser_options['allow_videocode'] = 0; }
|
| if($postrow['userusername']) { $postrow['username'] = $postrow['userusername']; } $postrow['username'] = htmlspecialchars_uni($postrow['username']); $postrow['subject'] = htmlspecialchars_uni($parser->parse_badwords($postrow['subject'])); $postrow['date'] = my_date($mybb->settings['dateformat'], $postrow['dateline'], null, 0); $postrow['profilelink'] = build_profile_link($postrow['username'], $postrow['uid']);
|
$postrow['message'] = $parser->parse_message($postrow['message'], $parser_options); $plugins->run_hooks("printthread_post");
| $postrow['message'] = $parser->parse_message($postrow['message'], $parser_options); $plugins->run_hooks("printthread_post");
|
Zeile 192 | Zeile 194 |
---|
*/ function makeprintablenav($pid=0, $depth="--") {
|
*/ function makeprintablenav($pid=0, $depth="--") {
|
global $mybb, $db, $pforumcache, $fid, $forum, $lang;
| global $mybb, $db, $pforumcache, $fid, $forum, $lang, $templates;
|
if(!is_array($pforumcache)) { $parlist = build_parent_list($fid, "fid", "OR", $forum['parentlist']);
| if(!is_array($pforumcache)) { $parlist = build_parent_list($fid, "fid", "OR", $forum['parentlist']);
|
Zeile 208 | Zeile 210 |
---|
{ foreach($pforumcache[$pid] as $key => $forumnav) {
|
{ foreach($pforumcache[$pid] as $key => $forumnav) {
|
$forums .= "+".$depth." $lang->forum {$forumnav['name']} (<i>".$mybb->settings['bburl']."/".get_forum_link($forumnav['fid'])."</i>)<br />\n";
| $forumnav['link'] = get_forum_link($forumnav['fid']); eval("\$forums .= \"".$templates->get("printthread_nav")."\";");
|
if(!empty($pforumcache[$forumnav['fid']])) { $newdepth = $depth."-";
| if(!empty($pforumcache[$forumnav['fid']])) { $newdepth = $depth."-";
|