[open-ils-commits] r11099 - in branches/rel_1_4/Open-ILS/web/conify/global: actor permission
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Nov 7 16:19:56 EST 2008
Author: dbs
Date: 2008-11-07 16:19:52 -0500 (Fri, 07 Nov 2008)
New Revision: 11099
Modified:
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html
branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html
Log:
Backport r11098 from trunk: Make quotes in JavaScript inside attribute values work in XMLENT
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html 2008-11-07 21:19:20 UTC (rev 11098)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html 2008-11-07 21:19:52 UTC (rev 11099)
@@ -306,7 +306,7 @@
jsId="editor_pane_opac_visible"
type="checkbox"
dojoType="dijit.form.CheckBox"
- onChange='if (current_ou) ou_list_store.setValue( current_ou, "opac_visible", this.checked ? "t" : "f" );'
+ onChange="if (current_ou) ou_list_store.setValue( current_ou, 'opac_visible', this.checked ? 't' : 'f' );"
/>
</td>
</tr>
@@ -546,7 +546,7 @@
jsId="billing_addr_valid"
dojoType="dijit.form.CheckBox"
value='t'
- onChange='if (current_billing_address) current_billing_address.valid( this.checked ? "t" : "f" );'
+ onChange="if (current_billing_address) current_billing_address.valid( this.checked ? 't' : 'f' );"
/>
</td>
</tr>
@@ -615,7 +615,7 @@
jsId="holds_addr_valid"
dojoType="dijit.form.CheckBox"
value='t'
- onChange='if (current_holds_address) current_holds_address.valid( this.checked ? "t" : "f" );'
+ onChange="if (current_holds_address) current_holds_address.valid( this.checked ? 't' : 'f' );"
/>
</td>
</tr>
@@ -683,7 +683,7 @@
type="checkbox"
jsId="mailing_addr_valid"
dojoType="dijit.form.CheckBox"
- onChange='if (current_mailing_address) current_mailing_address.valid( this.checked ? "t" : "f" );'
+ onChange="if (current_mailing_address) current_mailing_address.valid( this.checked ? 't' : 'f' );"
/>
</td>
</tr>
@@ -751,7 +751,7 @@
type="checkbox"
jsId="ill_addr_valid"
dojoType="dijit.form.CheckBox"
- onChange='if (current_ill_address) current_ill_address.valid( this.checked ? "t" : "f" );'
+ onChange="if (current_ill_address) current_ill_address.valid( this.checked ? 't' : 'f' );"
/>
</td>
</tr>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html 2008-11-07 21:19:20 UTC (rev 11098)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html 2008-11-07 21:19:52 UTC (rev 11099)
@@ -264,7 +264,7 @@
jsId="editor_pane_can_have_users"
type="checkbox"
dojoType="dijit.form.CheckBox"
- onChange='if (current_type) ou_type_store.setValue( current_type, "can_have_users", this.checked ? "t" : "f" );'
+ onChange="if (current_type) ou_type_store.setValue( current_type, 'can_have_users', this.checked ? 't' : 'f' );"
/>
</td>
</tr>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html 2008-11-07 21:19:20 UTC (rev 11098)
+++ branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html 2008-11-07 21:19:52 UTC (rev 11099)
@@ -348,7 +348,7 @@
jsId="editor_pane_usergroup"
type="checkbox"
dojoType="dijit.form.CheckBox"
- onChange='if (current_group) group_store.setValue( current_group, "usergroup", this.checked ? "t" : "f" );'
+ onChange="if (current_group) group_store.setValue( current_group, 'usergroup', this.checked ? 't' : 'f' );"
/>
</td>
</tr>
More information about the open-ils-commits
mailing list