error in filelist.php

Started by ZajferX, July 04, 2011, 03:38:34 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ZajferX


putyn

replace this

preg_match('/\\.([A-Za-z0-9]+)$/', $subrow["filename"], $ext);
$ext = strtolower($ext[1]);

with

$ext = 'unknown';
if(preg_match('/\\.([A-Za-z0-9]+)$/', $subrow["filename"], $ext))
   $ext = strtolower($ext[1]);

ZajferX

i have this error


Notice: Undefined offset: 1 in /var/www/test/filelist.php on line 34


the code that gives the error is

$ext = strtolower($ext[1]);