
06-09-2012, 02:05 PM
|
|
|
Join Date: Apr 2010
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by DragonByte Tech
Give this a try
Open
dbtech/profilehover/hooks/ajax_start.php
Find
PHP Code:
$user['lastactivitydate'] = vbdate($vbulletin->options['dateformat'], $user['lastactivity'], true);
On the line above add
PHP Code:
if ($user['ph_pic_show'] && !$user['avatarwidth'])
{
$imgsize = getimagesize($user['ph_pic_show']);
$user['avatarwidth'] = $imgsize[0];
$user['avatarheight'] = $imgsize[1];
}
That should set the width/height on non custom images.
Dylan
|
Perfect thankyou
|