vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Undesired result trying to grab first attachment from thread (https://vborg.vbsupport.ru/showthread.php?t=281531)

N8 04-14-2012 01:35 AM

Undesired result trying to grab first attachment from thread
 
From this Mod: https://vborg.vbsupport.ru/showthread.php?t=271131

--

I need this code to always grab the first uploaded file, but for some reason it *sometimes* uses the first uploaded image, but other times it uses other images...



Location: threadbit_process
Code:

global $forumids_included;
if ($vbulletin->options['chip_threadthumb_turn'] AND in_array($foruminfo['forumid'], array_keys((array)$forumids_included)))
{           
    $have_thumb = false;
    //using image of first post + youtube thumbnails
    if ( strpos($vbulletin->options['chip_threadthumb_types'], '1') !== false )
    {
        if (preg_match('#\[IMG\](.+?)\[\/IMG\]#i', $thread['thumb'], $m))
        {
            $thread['thumb_src'] = $m[1];   
            $have_thumb = true;
        }
        elseif (preg_match('#\[YOUTUBE\]([^\[]+?)\[\/YOUTUBE\]#i', $thread['thumb'], $m))   
        {
            $str = preg_replace('#(http.*watch\?v=)?([^"]+?)(&.*)?#', '$2', $m[1]);
            $thread['thumb_src'] = 'http://i4.ytimg.com/vi/'.$str.'/default.jpg';   
            $have_thumb = true;
        }
        //vb4
        elseif (preg_match('#\[video=youtube;([^\]]+?)\]#i', $thread['thumb'], $m)) 
        {
            $thread['thumb_src'] = 'http://i4.ytimg.com/vi/'.$m[1].'/default.jpg';   
            $have_thumb = true;
        }
    }

    //using file attach
    if ( 
        !$have_thumb // have not a thumbnails
        AND $thread['attach'] > 0 //have attach files
        AND strpos($vbulletin->options['chip_threadthumb_types'], '2') !== false )
    {
        //get attach file - image
        $attach = $vbulletin->db->query_first("
            SELECT attachment.attachmentid, attachment.dateline
            FROM ".TABLE_PREFIX."attachment AS attachment
            WHERE attachment.postid = ".$thread['firstpostid']." AND attachment.extension IN ('png', 'jpg', 'jpeg', 'gif', 'bmp')
            LIMIT 1
        ");
        if($attach)
        {
            $thread['thumb_src'] = $vbulletin->options['bburl'].'/attachment.php?attachmentid='.$attach['attachmentid'].'&thumb=1&d='.$attach['dateline'];   
            $have_thumb = true;
        }
    }
   
    if($vbulletin->options['chip_threadthumb_showdefault'] && !$have_thumb)
    {
        $thread['thumb_src'] = $stylevar['imgdir_misc'].'/'.$vbulletin->options['chip_threadthumb_noimg'];   
        $have_thumb = 1;
    }
    if ($have_thumb)
    {
        $thread['hasthumb'] = 1;
        $thread['threadiconpath'] =& $thread['thumb_src'];
    }
   
   
    unset($thread['thumb']);




forumdisplay_query
Code:

if($vbulletin->options['chip_threadthumb_turn'] AND THIS_SCRIPT == 'forumdisplay' AND $vbulletin->forumcache["$forumid"]['thumb_w'])
{
    $previewfield .= "thread.firstpostid, post.pagetext AS thumb,";
    if(!strpos($previewjoin, 'post AS post'))
    {
        $previewjoin .= "\nLEFT JOIN " . TABLE_PREFIX . "post AS post ON(post.postid = thread.firstpostid)\n";
    }
}




Anyone know what might be happening here?

kh99 04-14-2012 01:45 AM

I don't follow everything going on there, but it may be that the query in the threadbit_process plugin, under the "//get attach file - image" comment, should have "ORDER BY attachment.dateline ASC", otherwise I think the order is undefined.


All times are GMT. The time now is 07:03 AM.

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.00960 seconds
  • Memory Usage 1,723KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete