marino - 2001-03-27

To show file names without .jpg in the end, I did this.
In line 114 (aprox) of index.php I did this.
Replaced line
print "<IMG hspace=3 vspace=3 $thumbsize[3] BORDER=0 SRC=\&quot;" . dirname($SCRIPT_NAME) . "$imgsrc\&quot;><br>$file\n";

with

print "<IMG hspace=3 vspace=3 $thumbsize[3] BORDER=0 SRC=\&quot;" . dirname($SCRIPT_NAME) . "$imgsrc\&quot;><br>\n";
$noext = substr($file, 0, -4);
print "$noext";