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 (!epo.getUseRecycledBean()){
|
||||||
if (request.getParameter("id") != null) {
|
if (request.getParameter("id") != null) {
|
||||||
int id = Integer.parseInt(request.getParameter("id"));
|
int id = Integer.parseInt(request.getParameter("id"));
|
||||||
if (id > 0) {
|
if (id >= 0) {
|
||||||
try {
|
try {
|
||||||
portalForEditing = (Portal)pDao.getPortal(id);
|
portalForEditing = (Portal)pDao.getPortal(id);
|
||||||
action = "update";
|
action = "update";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue