|
From: <jt...@hy...> - 2007-03-24 20:23:34
|
Author: jtravis Date: 2007-03-24 12:23:30 -0800 (Sat, 24 Mar 2007) New Revision: 3862 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3862 Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy Log: Fix problem when gspArgs isn't set Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy =================================================================== --- trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-24 20:05:34 UTC (rev 3861) +++ trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-24 20:23:30 UTC (rev 3862) @@ -7,7 +7,6 @@ import org.apache.commons.logging.Log import org.apache.commons.logging.LogFactory -import org.hyperic.hq.appdef.shared.AppdefEntityID import org.hyperic.hq.authz.server.session.AuthzSubject import org.hyperic.hq.ui.util.ContextUtils import org.hyperic.hq.ui.util.RequestUtils @@ -110,8 +109,8 @@ */ protected void render(args) { args = (args == null) ? [:] : args - def gspArgs = args.remove("args") - def gspFile = args.remove("file") + def gspArgs = args.get("args", [:]) + def gspFile = args.file def useAction if (gspFile == null) |