Skip to content

Commit

Permalink
allowing ampersand sign in tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jomz committed Oct 15, 2008
1 parent 72b7a4c commit a2f0ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/meta_tag.rb
Expand Up @@ -2,7 +2,7 @@ class MetaTag < ActiveRecord::Base

if Radiant::Config['tags.complex_strings'] == 'true'
delim = ";"
re_format = /^[a-zA-Z0-9\_\-\s\/()'.]+$/
re_format = /^[a-zA-Z0-9\_\-\s\/()'.&]+$/
else
delim = " "
re_format = /^[a-zA-Z0-9\_\-]+$/
Expand Down

0 comments on commit a2f0ba2

Please sign in to comment.