Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Image dimensions in X_Threads
leefish Offline
Hamster
*****
Posts: 1,009
Joined: Apr 2010
Post: #3
RE: Image dimensions in X_Threads
Hmm, Zinga, I think I may be thick - I can't work out where to put the IF statement above.......

Please can you give a slightly bigger hint?

What I have done is this:

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$query = $db->query("
			SELECT a.updatetime, a.md5hash, a.thumbs, a.uploadtime, a.aid, a.attachname, a.filename, a.field, t.*
			FROM ".TABLE_PREFIX."xtattachments a
			LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=a.tid)
			WHERE t.visible=1 AND a.field='pfpic' AND t.closed NOT LIKE 'moved|%' AND t.fid IN ('".implode("','", $gallery_tid_array)."')
			ORDER BY t.tid DESC
			LIMIT 1
		");
		
		while($gallery = $db->fetch_array($query))
		{
			$gallery_username = htmlspecialchars_uni($gallery['username']);
			$gallery_title = htmlspecialchars_uni($gallery['subject']);
			$gallery_postlink = get_thread_link(intval($gallery['tid']));
			$gallery_datetime = my_date($mybb->settings['dateformat'], $gallery['uploadtime']).' '.my_date($mybb->settings['timeformat'], $gallery['uploadtime']);
			$gallery_thumb = xthreads_get_xta_url($gallery).'/thumb160x120';	
			if($gallery['thumbs'])
			{
			$gallery['thumbs'] = unserialize($gallery['thumbs']);
			}
			eval("\$gallery_gallery_gallery .= \"".$templates->get("gallery_gallery_gallery")."\";");
			
		}


My images display ok (just like they did before) but the image dimensions are not applied (i.e. when I look in page speed it still says no image dimensions specified). Do I need to change something in the HTML template?



[Image: leelink.gif]
MYBB1.6 & XThreads
(This post was last modified: 02-28-2011 05:49 PM by leefish.)
02-28-2011 03:28 PM
Visit this user's website Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
Image dimensions in X_Threads - leefish - 02-25-2011, 05:06 PM
RE: Image dimensions in X_Threads - leefish - 02-28-2011 03:28 PM
RE: Image dimensions in X_Threads - RateU - 03-01-2011, 05:35 AM
RE: Image dimensions in X_Threads - RateU - 03-01-2011, 08:05 AM
RE: Image dimensions in X_Threads - RateU - 03-02-2011, 02:00 AM
RE: Image dimensions in X_Threads - RateU - 03-02-2011, 04:22 AM
RE: Image dimensions in X_Threads - RateU - 03-02-2011, 06:08 AM
RE: Image dimensions in X_Threads - RateU - 03-03-2011, 07:26 AM

 Standard Tools
Forum Jump: