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=\"" . dirname($SCRIPT_NAME) . "$imgsrc\"><br>$file\n";
with
print "<IMG hspace=3 vspace=3 $thumbsize[3] BORDER=0 SRC=\"" . dirname($SCRIPT_NAME) . "$imgsrc\"><br>\n"; $noext = substr($file, 0, -4); print "$noext";
Log in to post a comment.
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=\"" . dirname($SCRIPT_NAME) . "$imgsrc\"><br>$file\n";
with
print "<IMG hspace=3 vspace=3 $thumbsize[3] BORDER=0 SRC=\"" . dirname($SCRIPT_NAME) . "$imgsrc\"><br>\n";
$noext = substr($file, 0, -4);
print "$noext";