bugfix: url was like http://server/dirfile.suf now http://server/dir/file.suf
authorcvs <cvs>
Wed, 3 Oct 2001 23:25:04 +0000 (23:25 +0000)
committercvs <cvs>
Wed, 3 Oct 2001 23:25:04 +0000 (23:25 +0000)
source/mir/media/MediaHandlerGeneric.java

index 471f06c..41379cd 100755 (executable)
@@ -117,7 +117,7 @@ public class MediaHandlerGeneric implements MirMedia
       String title = ent.getValue("title")+
         " - "+mediaTypeEnt.getValue("name")+" "+
         ent.getValue("size")+" Bytes";
-      return StringUtil.createURLLinks(ent.getValue("publish_server")+
+      return StringUtil.createURLLinks(ent.getValue("publish_server")+"/"+
         ent.getValue("publish_path"), title, imageRoot, getBigIcon());
     }