[Rt-commit] r13451 - in rt/3.8/trunk: share/html/Dashboards/Elements

sartak at bestpractical.com sartak at bestpractical.com
Fri Jun 20 12:45:06 EDT 2008


Author: sartak
Date: Fri Jun 20 12:45:05 2008
New Revision: 13451

Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/share/html/Dashboards/Elements/SelectPrivacy

Log:
 r62973 at dhcp32:  sartak | 2008-06-20 11:44:52 -0500
 Don't escape the quotes in dashboard-privacy's selected="selected"


Modified: rt/3.8/trunk/share/html/Dashboards/Elements/SelectPrivacy
==============================================================================
--- rt/3.8/trunk/share/html/Dashboards/Elements/SelectPrivacy	(original)
+++ rt/3.8/trunk/share/html/Dashboards/Elements/SelectPrivacy	Fri Jun 20 12:45:05 2008
@@ -56,9 +56,9 @@
 % my $selected = $privacy eq ($Default || '') ? 'selected="selected"' : '';
 
 % if (ref($object) eq 'RT::User' && $object->id == $session{'CurrentUser'}->Id) {
-<option <%$selected%> value="<%$privacy%>"><&|/l&>My dashboards</&></option>
+<option <%$selected|n%> value="<%$privacy%>"><&|/l&>My dashboards</&></option>
 % } else {
-<option <%$selected%> value="<%$privacy%>"><&|/l, $object->Name&>[_1]'s dashboards</&></option>
+<option <%$selected|n%> value="<%$privacy%>"><&|/l, $object->Name&>[_1]'s dashboards</&></option>
 % }
 % }
 </select>


More information about the Rt-commit mailing list