jford 2004/09/15 13:35:09 Modified: portal/src/webapp/WEB-INF/templates/layout/html/columns layout.vm Log: Fixed issue w/ missing customizer images Revision Changes Path 1.15 +5 -2 jakarta-jetspeed-2/portal/src/webapp/WEB-INF/templates/layout/html/columns/layout.vm Index: layout.vm =================================================================== RCS file: /home/cvs/jakarta-jetspeed-2/portal/src/webapp/WEB-INF/templates/layout/html/columns/layout.vm,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- layout.vm 7 Sep 2004 14:11:58 -0000 1.14 +++ layout.vm 15 Sep 2004 20:35:09 -0000 1.15 @@ -78,8 +78,11 @@ #foreach($f in $entry) <tr> <td width="100%"> - #set($row = $f.getPropertyValue($layoutType, "row") + 0) - #set($col = $f.getPropertyValue($layoutType, "column") + 0) + #set($row = $f.getPropertyValue($layoutType, "row")) + #set($col = $f.getPropertyValue($layoutType, "column")) + #set($temp = 0) ##create temp Integer to parse strings + #set($row = $temp.parseInt($row)) + #set($col = $temp.parseInt($col)) #if($editing)<div id="_$f.id"> <div style="position:relative; top:10px; left:0; width:100%; height:100%;"> <div id="_$f.id_toolBox" >
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]