From: dbs Date: Fri, 7 Nov 2008 21:19:52 +0000 (+0000) Subject: Backport r11098 from trunk: Make quotes in JavaScript inside attribute values work... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9477c75f82e44ddb2cb40475c09bb4a71c760413;p=Evergreen.git Backport r11098 from trunk: Make quotes in JavaScript inside attribute values work in XMLENT git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4@11099 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/conify/global/actor/org_unit.html b/Open-ILS/web/conify/global/actor/org_unit.html index 9af91da917..e88d0e9de1 100644 --- a/Open-ILS/web/conify/global/actor/org_unit.html +++ b/Open-ILS/web/conify/global/actor/org_unit.html @@ -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' );" /> @@ -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' );" /> @@ -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' );" /> @@ -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' );" /> @@ -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' );" /> diff --git a/Open-ILS/web/conify/global/actor/org_unit_type.html b/Open-ILS/web/conify/global/actor/org_unit_type.html index d306660d8d..8e7b61c950 100644 --- a/Open-ILS/web/conify/global/actor/org_unit_type.html +++ b/Open-ILS/web/conify/global/actor/org_unit_type.html @@ -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' );" /> diff --git a/Open-ILS/web/conify/global/permission/grp_tree.html b/Open-ILS/web/conify/global/permission/grp_tree.html index eeac2cacaa..5eb818b779 100644 --- a/Open-ILS/web/conify/global/permission/grp_tree.html +++ b/Open-ILS/web/conify/global/permission/grp_tree.html @@ -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' );" />