Skip to content

Commit

Permalink
Merge pull request #396 from GOCDB/hotfix-5.10.X
Browse files Browse the repository at this point in the history
Allow single quote in user identifiers to master
  • Loading branch information
gregcorbett authored Nov 15, 2022
2 parents e761dab + 1b7d762 commit ddda6b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions config/gocdb_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -486,15 +486,15 @@
<!-- Allows whitespace in the key, but not trailing or leading -->
<regex>/^[a-zA-Z0-9@_\-\[\]\+\.]+(\s*[a-zA-Z0-9@_\-\[\]\+\.]+)*$/</regex>
</field>
<field>
<!-- Identifier key value -->
<fname>VALUE</fname>
<length>255</length>
<!-- negation regex - allow all chars except negated -->
<!--Allows most characters, including whitespace. However, no trailing or leading whitespace permitted -->
<!-- <regex>/^[^`'\"&lt;&gt;\s]+(\s*[^`'\"&lt;&gt;\s]+)*$/</regex> -->
<regex>/^[^`'\"&lt;&gt;\s]+(\s*[^`'\"&lt;&gt;\s]+)*$/</regex>
</field>
<field>
<!-- Identifier key value -->
<fname>VALUE</fname>
<length>255</length>
<!-- Allows most characters, including whitespace.
However, no trailing or leading whitespace is permitted.
-->
<regex>/^[^`\"&lt;&gt;\s]+(\s*[^`\"&lt;&gt;\s]+)*$/</regex>
</field>
</entity>
<!-- ========================================================== -->
<entity>
Expand Down
2 changes: 1 addition & 1 deletion htdocs/web_portal/static_html/goc5_logo.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- <img src="img/Logo-1.6.png" class="logo_image" height="39" style="vertical-align: middle;"/>-->
<h3 class="Logo_Text Small_Bottom_Margin Standard_Padding"
style="vertical-align: middle; margin-left: 0.2em;">
GOCDB 5.10.0
GOCDB 5.10.1
</h3>

</a>
Expand Down

0 comments on commit ddda6b5

Please sign in to comment.