View Single Post
  #4  
Old 09-16-2005, 07:14 AM
raminia's Avatar
raminia+ Offline
Team Pixelpost
 
Join Date: Jan 2005
Location: FL, US
Posts: 3,706
Send a message via Yahoo to raminia
again for create thumbs
inside includes/functions.php replace
PHP Code:
$ext strtolower(end(explode('.'$image_path))); 
with
PHP Code:
    $image_path_exp explode('.'$image_path);
    
$image_path_end end($image_path_end);
    
$ext strtolower($image_path_end); 
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7
Reply With Quote