Cosmetic fix of MNGs imagesize detection code (missing regex trailing "$")
[www.energie.vellum.cz.git] / common.php
index 7644141..240ad20 100644 (file)
@@ -182,7 +182,7 @@ function img_size($width,$height)
 
 function img($file,$alt,$attrs="")
 {
-       list($width,$height)=getimagesize(ereg_replace("\\.mng",".gif",$file));
+       list($width,$height)=getimagesize(ereg_replace("\\.mng\$",".gif",$file));
        $alt=htmlspecialchars($alt);
        return("<img src=\"$file\" alt=\"$alt\" title=\"$alt\" ".img_size($width,$height)
                        .($attrs=="" ? "" : " ".$attrs)." />");