Revision: 853
http://stripes.svn.sourceforge.net/stripes/?rev=853&view=rev
Author: javelotinfo
Date: 2008-02-12 12:48:27 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
Fixed missing assignment to var
Modified Paths:
--------------
trunk/stripes/src/net/sourceforge/stripes/tag/UseActionBeanTagExtraInfo.java
Modified:
trunk/stripes/src/net/sourceforge/stripes/tag/UseActionBeanTagExtraInfo.java
===================================================================
---
trunk/stripes/src/net/sourceforge/stripes/tag/UseActionBeanTagExtraInfo.java
2008-02-11 20:22:06 UTC (rev 852)
+++
trunk/stripes/src/net/sourceforge/stripes/tag/UseActionBeanTagExtraInfo.java
2008-02-12 20:48:27 UTC (rev 853)
@@ -44,7 +44,7 @@
Object beanclass = tag.getAttribute("beanclass");
if (beanclass != null) {
String var = tag.getAttributeString("var");
- if (var == null) tag.getAttribute("id");
+ if (var == null) var = tag.getAttributeString("id");
// Make sure we have the class name, not the class
if (beanclass instanceof Class) beanclass = ((Class<?>)
beanclass).getName();
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development