Cosmetic fix of MNGs imagesize detection code (missing regex trailing "$")
authorshort <>
Wed, 24 Apr 2002 00:39:23 +0000 (00:39 +0000)
committershort <>
Wed, 24 Apr 2002 00:39:23 +0000 (00:39 +0000)
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)." />");