View Single Post
  #3  
Old 09-16-2005, 07:05 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
and similary inside admin/index.php
change line 524 form
PHP Code:
$ftype strtolower(end(explode('.'$file))); 
to
PHP Code:
$file_exp explode('.'$file);
$file_ext end($file_exp);
$ftype strtolower($file_ext); 
@Dev
0) change this in CVS
1) move this to bugs forum.
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7
Reply With Quote