You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by pa...@apache.org on 2002/06/30 20:53:50 UTC

cvs commit: jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/html customizer-portletset-layout.vm

paulsp      2002/06/30 11:53:50

  Modified:    webapp/WEB-INF/templates/vm/portlets/html
                        customizer-portletset-layout.vm
  Log:
  Cleanup "if test" when setting defaults for the current skin or security ref.  Previously
  a skin named" $currentSkin" may incorrectly be the default.
  
  Revision  Changes    Path
  1.8       +2 -2      jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/html/customizer-portletset-layout.vm
  
  Index: customizer-portletset-layout.vm
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/html/customizer-portletset-layout.vm,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- customizer-portletset-layout.vm	30 Jun 2002 05:23:19 -0000	1.7
  +++ customizer-portletset-layout.vm	30 Jun 2002 18:53:50 -0000	1.8
  @@ -74,7 +74,7 @@
           #end      
             <option value="">-- Default--
           #foreach ($skin in $skins)
  -          <option value="$skin.Name" #if ($skin.Name == $currentSkin) SELECTED #end>
  +          <option value="$skin.Name" #if ($skin.Name == $!currentSkin) SELECTED #end>
              #if ($skin.Title) $skin.Title #else $skin.Name #end
           #end
           </select>
  @@ -105,7 +105,7 @@
           #end      
             <option value="">-- Default--
           #foreach ($security in $securitys)
  -          <option value="$security.Name" #if ($security.Name == $currentSecurityRef.Parent) SELECTED #end>
  +          <option value="$security.Name" #if ($security.Name == $!currentSecurityRef.Parent) SELECTED #end>
              #if ($security.Title) $security.Title #else $security.Name #end
           #end
           </select>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>