Commit 5c2c5db7b7a87f42d7a08f86f23de539915a5704
1 parent
ac6180bc
Exists in
master
and in
4 other branches
Also match if it is at the end or in the middle of a sentence.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
config/initializers/1_settings.rb
... | ... | @@ -69,7 +69,7 @@ rescue ArgumentError # no user configured |
69 | 69 | end |
70 | 70 | Settings.gitlab['signup_enabled'] ||= false |
71 | 71 | Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil? |
72 | -Settings.gitlab['issue_closing_pattern'] = '^([Cc]loses|[Ff]ixes) #(\d+)' if Settings.gitlab['issue_closing_pattern'].nil? | |
72 | +Settings.gitlab['issue_closing_pattern'] = '([Cc]loses|[Ff]ixes) #(\d+)' if Settings.gitlab['issue_closing_pattern'].nil? | |
73 | 73 | Settings.gitlab['default_projects_features'] ||= {} |
74 | 74 | Settings.gitlab.default_projects_features['issues'] = true if Settings.gitlab.default_projects_features['issues'].nil? |
75 | 75 | Settings.gitlab.default_projects_features['merge_requests'] = true if Settings.gitlab.default_projects_features['merge_requests'].nil? | ... | ... |