Adding change to PortalRetryController to allow editing of portal 0.

This commit is contained in:
bdc34 2011-01-31 20:40:07 +00:00
parent f8cb61a833
commit 8d61ffbcda

View file

@ -64,7 +64,7 @@ public class PortalRetryController extends BaseEditController {
if (!epo.getUseRecycledBean()){
if (request.getParameter("id") != null) {
int id = Integer.parseInt(request.getParameter("id"));
if (id > 0) {
if (id >= 0) {
try {
portalForEditing = (Portal)pDao.getPortal(id);
action = "update";