My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 144 attachment: context.patch (728 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
### Eclipse Workspace Patch 1.0
#P jmesa-trunk
Index: src/org/jmesa/web/PortletRequestWebContext.java
===================================================================
--- src/org/jmesa/web/PortletRequestWebContext.java (revision 2020)
+++ src/org/jmesa/web/PortletRequestWebContext.java (working copy)
@@ -65,8 +65,8 @@
return this.getPortletContext().getAttribute(name);
}

- public Object getApplicationInitParameter(String name) {
- return this.getPortletContext().getAttribute(name);
+ public String getApplicationInitParameter(String name) {
+ return this.getPortletContext().getInitParameter(name);
}

public void removeApplicationAttribute(String name) {
Powered by Google Project Hosting