Adding change to PortalRetryController to allow editing of portal 0.
This commit is contained in:
parent
f8cb61a833
commit
8d61ffbcda
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue