Dateiverwaltung für die WebBox
ulrich
2018-03-03 3d0c6d50d341c393890f54704543810563ea5eda
src/java/de/uhilger/filecms/pub/Catalog.java
@@ -64,8 +64,9 @@
  }
  
  private List<FileRef> listInt(String relPath, String orderBy, String order) {
     Bild bild = new Bild();
    List<FileRef> files = new ArrayList();
    if(!relPath.startsWith(".")) {
      Bild bild = new Bild();
    StringBuffer path = new StringBuffer(PUB_DIR_PATH); // www/
    path.append(relPath);
    File dir = new File(getBase().getAbsolutePath(), path.toString());
@@ -86,6 +87,7 @@
        files.add(ref);
      }
    }
    }
    return files;
 }