Skip to content
Succès

Changes

Summary

  1. Fix a bug in AutoRedirectServlet in which the goto parameter is directly (details)
  2. Bug #15077 (details)
Commit 12c4f128ebecf1193216074614e835a5611a896b by Miguel Moquillon
Fix a bug in AutoRedirectServlet in which the goto parameter is directly
encoded for URL even in the case it isn't set, driving to a
NullPointerException. Now, all the URL parameters are encoded when
they're valued.
The file was modifiedcore-war/src/main/webapp/look/jsp/spaceHomePage.jsp (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/AutoRedirectServlet.java (diff)
Commit 5326e664deb3556df528d83e78917b929d6588e1 by Miguel Moquillon
Bug #15077

When files are uploaded in a Kmelia instance, the parameters (like the
kmelia instance id, the publication name, and so on) are passed directly
in the URL (hu ???). This is why publication name, description and
keywords are URL encoded. So, in the servlet targeted by the URL, these
parameters has to be decoded before being used to build the publication.
The file was modifiedcore-services/importExport/src/main/java/org/silverpeas/core/importexport/control/ImportSettings.java (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/importexport/servlets/ImportDragAndDrop.java (diff)