modified : user thumb url issue fixed
This commit is contained in:
parent
298d83b812
commit
c3cf1875bc
1 changed files with 7 additions and 1 deletions
|
@ -455,6 +455,7 @@ if(!function_exists('user_thumb'))
|
||||||
|
|
||||||
$size = ( !in_array( $size, $default ) or !$size ) ? 't' : $size;
|
$size = ( !in_array( $size, $default ) or !$size ) ? 't' : $size;
|
||||||
|
|
||||||
|
list($width,$height) = explode('x',$params['size']);
|
||||||
|
|
||||||
if( $size=='l')
|
if( $size=='l')
|
||||||
{
|
{
|
||||||
|
@ -471,7 +472,12 @@ if(!function_exists('user_thumb'))
|
||||||
$w = 40;
|
$w = 40;
|
||||||
$h = 40;
|
$h = 40;
|
||||||
}
|
}
|
||||||
|
if(isset($width) && is_numeric($width) && isset($height) && is_numeric($height) )
|
||||||
|
{
|
||||||
|
$w = $width;
|
||||||
|
$h = $height;
|
||||||
|
}
|
||||||
|
|
||||||
$tim_postfix = '&type=users&h='.$h.'&w='.$w.'&zc=1';
|
$tim_postfix = '&type=users&h='.$h.'&w='.$w.'&zc=1';
|
||||||
|
|
||||||
$timthumb_path = CB_SERVER_THUMB_URL.'/timthumb.php?src=';
|
$timthumb_path = CB_SERVER_THUMB_URL.'/timthumb.php?src=';
|
||||||
|
|
Loading…
Add table
Reference in a new issue