### Eclipse Workspace Patch 1.0 #P sakai-kernel-impl Index: src/main/java/org/sakaiproject/content/impl/DbContentService.java =================================================================== --- src/main/java/org/sakaiproject/content/impl/DbContentService.java (revision 62591) +++ src/main/java/org/sakaiproject/content/impl/DbContentService.java (working copy) @@ -2241,7 +2241,7 @@ protected boolean putResourceBodyFilesystem(ContentResourceEdit resource, byte[] body) { // Do not create the files for resources with zero length bodies - if ((body == null) || (body.length == 0)) return true; + if (body == null) return true; // form the file name File file = new File(externalResourceFileName(resource)); @@ -2658,7 +2658,7 @@ if (edit.getContentLength() == 0) { M_log.warn("convertToFile(): zero length body : " + id); - return null; + //return null; } id = edit.getId(); @@ -2678,7 +2678,7 @@ { // not found M_log.warn("convertToFile(): body not found in source : " + id); - return null; + //return null; } // get the creation date (or modified date, or now)