Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #8  
Old 01-16-2016, 12:24 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, try changing:

PHP Code:
    $tpost['pagetext'] =  html_entity_decode($tpost['pagetext']); 
to:

PHP Code:
    $tpost['pagetext'] = htmlentities($tpost['pagetext'], ENT_QUOTES'ISO-8859-15');
    
$tpost['pagetext'] = html_entity_decode($tpost['pagetext'], ENT_QUOTES'ISO-8859-15'); 
--------------- Added [DATE]1452962816[/DATE] at [TIME]1452962816[/TIME] ---------------

Here's a version that will show complete posts within a scrollable element, and if you have my acronym and username markup products installed, it will parse those as well:

PHP Code:
global $vbulletin$db;

require_once(
'./includes/functions_user.php');
require_once(
DIR '/includes/class_bbcode.php');
$bbcode_parser = new vB_BbCodeParser($vbulletinfetch_tag_list());

$number_of_posts 10;

$output '<ul class="restore">';

$recent_posts $vbulletin->db->query_read("
    SELECT post.*, thread.title, thread.forumid
    FROM " 
TABLE_PREFIX "post AS post
    INNER JOIN " 
TABLE_PREFIX "thread AS thread
    ON thread.threadid = post.threadid
    ORDER BY post.dateline DESC
"
);

$pcount 0;

while (
$tpost $db->fetch_array($recent_posts) AND $pcount $number_of_posts)
{
    if ((
$vbulletin->userinfo['forumpermissions'][$tpost['forumid']] & $vbulletin->bf_ugp_forumpermissions['canview']) AND (($tpost['visible'] == 1) OR can_moderate($tpost['forumid'])))
    {
        
$pcount++;
        
$avatar_url fetch_avatar_url($tpost['userid']);
        
$avatar $avatar_url[0];

        if (!
$avatar)
        {
            
$avatar $vbulletin->stylevars['imgdir_misc']['imagedir'] . '/unknown.gif';
        }

        
$tpost['title'] = fetch_censored_text($tpost['title']);
        
$tpost['pagetext'] = $bbcode_parser->parse($tpost['pagetext'], $tpost['forumid'], $tpost['allowsmilie']);
        
$tpost['pagetext'] = str_replace('<p>'''$tpost['pagetext']);
        
$tpost['pagetext'] = str_replace('</p>'''$tpost['pagetext']);
        
$tpost['pagetext'] = htmlentities($tpost['pagetext'], ENT_QUOTES'ISO-8859-15');
        
$tpost['pagetext'] = html_entity_decode($tpost['pagetext'], ENT_QUOTES'ISO-8859-15');
        if (
$vbulletin->options['markfl_unm_active'])
        {
            require_once(
'./usernamemarkup.php');
            
$tpost['pagetext'] = parse_unm($tpost['pagetext']);
        }
        if (
$vbulletin->options['markfl_thread_active'] AND  $vbulletin->options['markfl_acrojax_enable'] AND $vbulletin->options['markfl_acrojax_list'])
        {
            require_once(
'./acronyms.php');
            if (
do_acronyms())
            {
                if (
strpos($vbulletin->options['markfl_acrojax_areas'], 'Posts') !== false)
                {
                    
$tpost['pagetext'] = parse_acronyms($tpost['pagetext']);
                }
            }
        }

        
$output .= '<li class="avatarcontent floatcontainer widget_post_bit">';
        
$output .= '<div class="widget_post_userinfo">';
        
$output .= '<div class="cms_widget_post_useravatar widget_post_useravatar">';
        
$output .= '<a class="smallavatar comments_member_avatar_link" href="member.php?do=getinfo&username=' $tpost['username'] . '">';
        
$output .= '<img alt="' $tpost['username'] . '" src="' $avatar '" title="' $tpost['username'] . '">';
        
$output .= '</a></div></div>';
        
$output .= '<div class="smallavatartext widget_post_comment">';
        
$output .= '<div style="max-height: 100px; overflow: auto; background: #E8FFE8;" class="widget_post_content">';
        
$output .= $tpost['pagetext'];
        
$output .= '</div><h5 class="widget_post_header">';
        
$output .= '<a class="title" href="showthread.php?' $tpost['threadid'] . '-' str_replace(' ''-'$tpost['title']) . '&p=' $tpost['postid'] . '#post' $tpost['postid'] . '">' $tpost['title'] . '</a>';
        
$output .= '</h5><div class="meta">';
        
$output .= vbdate($vbulletin->options['dateformat'], $tpost['dateline'], 1) . ',';
        
$output .= '<span class="time">';
        
$output .= vbdate($vbulletin->options['timeformat'], $tpost['dateline']);
        
$output .= '</span><br></div></div></li>';
    }
}

unset (
$recent_posts);
$output .= '</ul>';
return 
$output
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:06 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04782 seconds
  • Memory Usage 2,879KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (14)post_thanks_box
  • (1)post_thanks_box_bit
  • (14)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (14)post_thanks_postbit_info
  • (14)postbit
  • (2)postbit_attachment
  • (14)postbit_onlinestatus
  • (14)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete