Details
Description
jetstpeed-menu.vm uses $conf.getInitParameter to get "tab-width" in $width
In VelocityPortletControl we have:
context.put("config", getConfig() )
When displaying $config.getClass().toString() we get:
org.apache.jetspeed.services.resources.JetspeedResources
We believe that
context.put("config", getConfig() )
should be replaced with
context.put("conf", getConfig() )
Now, $conf.getClass().toString() returns:
org.apache.jetspeed.portal.BasePortletControlConfig
and $width is not null any more