[Rt-commit] r4502 - in rt/branches/3.5-TESTING: html/Widgets

trs at bestpractical.com trs at bestpractical.com
Tue Feb 7 16:15:22 EST 2006


Author: trs
Date: Tue Feb  7 16:15:21 2006
New Revision: 4502

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/html/Widgets/TitleBoxStart

Log:
 r8432 at wintermute:  tom | 2006-02-07 16:11:01 -0500
 Fix undefined warnings


Modified: rt/branches/3.5-TESTING/html/Widgets/TitleBoxStart
==============================================================================
--- rt/branches/3.5-TESTING/html/Widgets/TitleBoxStart	(original)
+++ rt/branches/3.5-TESTING/html/Widgets/TitleBoxStart	Tue Feb  7 16:15:21 2006
@@ -43,7 +43,7 @@
 %# those contributions and any derivatives thereof.
 %# 
 %# END BPS TAGGED BLOCK }}}
-<div class="titlebox<% $class && " $class" %>"<% $id && qq[ id="$id"] |n %>>
+<div class="titlebox <% $class %>" id="<% $id %>">
   <div class="titlebox-title<% $title_class && " $title_class" %>">
 % if ($hideable) {
     <span class="widget"><a href="#" onclick="return rollup('<%$tid%>');" onfocus="this.blur(); return false;" title="Toggle visibility">X</a></span>
@@ -51,20 +51,20 @@
     <span class="left"><% $title_href && qq[<a href="$title_href">] | n %><% $title |n %><% $title_href && "</a>" |n%></span>
     <span class="right"><% $titleright_href && qq[<a href="$titleright_href">] | n %><% $titleright |n %><% $titleright_href && "</a>" |n%></span>
   </div>
-  <div class="titlebox-content<% $bodyclass && " $bodyclass" %>" id="<%$tid%>">
+  <div class="titlebox-content <% $bodyclass %>" id="<%$tid%>">
 
 <%ARGS>
 $width => undef
-$class => undef
-$bodyclass => undef
+$class => ''
+$bodyclass => ''
 $title_href => undef
-$title => undef
+$title => ''
 $title_class => ''
 $titleright_href => undef
 $titleright => undef
 $contentbg => "#dddddd"
 $color => "#336699"
-$id => undef
+$id => ''
 $hideable => 1
 </%ARGS>
 


More information about the Rt-commit mailing list