• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Resize image - thay đổi kích cỡ ảnh trong vbb mà không cần dùng mod

Admin

Well-Known Member
Staff member
Administrator
Trong file file class_bbcode.php trong thư mục includes
Tìm
PHP:
return '<img src="' . $link . '" border="0" alt="" />';
Thay thế bằng
PHP:
$navigator_user_agent = ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) ? strtolower( $_SERVER['HTTP_USER_AGENT'] ) : ''; 
if (stristr($navigator_user_agent, "msie")) { 
return '<a href="' . $link . '" target="_blank"><img src="' . $link . '" border="0" alt="" style="width: expression(this.width > 640 ? 480 : true);" /></a>'; 
} else { 
return '<a href="' . $link . '" target="_blank"><img src="' . $link . '" border="0" alt="" style="max-width: 730px;" /></a>'; 
}
 

Facebook Comments

New posts New threads New resources

Back
Top