View Single Post
  #16  
Old 10-18-2005, 11:20 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
oh you have the php 5 issue.
replace the line 524 of admin/index.php which is
PHP Code:
$ftype strtolower(end(explode('.'$file))); 
in 1.4.2 with these lines
PHP Code:
$ftype_exp explode('.'$file);
$ftype_end end($ftype_exp);
$ftype strtolower($ftype_end); 
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7
Reply With Quote