[open-ils-commits] r14384 - trunk/Open-ILS/web/conify/global/actor (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Oct 12 16:24:52 EDT 2009
Author: miker
Date: 2009-10-12 16:24:46 -0400 (Mon, 12 Oct 2009)
New Revision: 14384
Modified:
trunk/Open-ILS/web/conify/global/actor/org_unit.html
Log:
Patch from Laura Cassell to make the email regexp a bit more forgiving.
Specifically, this allows the name portion of the address to contain
period separated chunks.
Modified: trunk/Open-ILS/web/conify/global/actor/org_unit.html
===================================================================
--- trunk/Open-ILS/web/conify/global/actor/org_unit.html 2009-10-12 20:24:12 UTC (rev 14383)
+++ trunk/Open-ILS/web/conify/global/actor/org_unit.html 2009-10-12 20:24:46 UTC (rev 14384)
@@ -239,7 +239,7 @@
<tr>
<th>&conify.org_unit.editor_pane.main_email;</th>
<td>
- <span id="editor_pane_email" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_email" regExp="^\w+\@\w+(?:\.\w+)+$">
+ <span id="editor_pane_email" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_email" regExp="^\w+(?:\.\w+)*\@\w+(?:\.\w+)+$">
<script type="dojo/connect" event="onChange">
if (current_ou) ou_list_store.setValue( current_ou, "email", this.getValue() );
</script>
More information about the open-ils-commits
mailing list