You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2007/05/02 00:35:52 UTC

svn commit: r534263 - /velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm

Author: nbubna
Date: Tue May  1 15:35:51 2007
New Revision: 534263

URL: http://svn.apache.org/viewvc?view=rev&rev=534263
Log:
fix c/p'ed typo

Modified:
    velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm

Modified: velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm
URL: http://svn.apache.org/viewvc/velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm?view=diff&rev=534263&r1=534262&r2=534263
==============================================================================
--- velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm (original)
+++ velocity/tools/branches/2.x/examples/showcase/VM_global_library.vm Tue May  1 15:35:51 2007
@@ -145,7 +145,7 @@
     #foreach( $param in $request.parameterMap.keySet() )
       #foreach( $value in $params.getStrings($param) )
         #if( $param != $method1 && $param != $method2 )
-          <input type="hidden" name="$param" value="$esc.html($value}">
+          <input type="hidden" name="$param" value="$esc.html($value)">
         #end
       #end
     #end
@@ -184,7 +184,7 @@
     #foreach( $param in $request.parameterMap.keySet() )
       #foreach( $value in $params.getStrings($param) )
         #if( $param != $method1 && $param != $method2 && $param != $method3 )
-          <input type="hidden" name="$param" value="$esc.html($value}">
+          <input type="hidden" name="$param" value="$esc.html($value)">
         #end
       #end
     #end
@@ -217,7 +217,7 @@
     #foreach( $param in $request.parameterMap.keySet() )
       #foreach( $value in $params.getStrings($param) )
         #if( $param != 'custom' )
-          <input type="hidden" name="$param" value="$esc.html($value}">
+          <input type="hidden" name="$param" value="$esc.html($value)">
         #end
       #end
     #end