
| Key: |
JS1-447
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Minor
|
| Assignee: |
Unassigned
|
| Reporter: |
Dimitris Avramidis
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Operating System: Windows NT/2K
Platform: PC
Operating System: Windows NT/2K
Platform: PC
|
|
|
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
|
|
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 |
Show » |
|