I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

Patch #2341

Updated by Andriy Lesyuk over 7 years ago

Simple patch fixing the issue, but dropping the compatibility with old redmine:

<pre>
===================================================================
--- project_alias.rb (revision 19)
+++ project_alias.rb (working copy)
@@ -4,7 +4,7 @@
if defined? ChiliProject
IDENTIFIER_RE = /^(?!\d+$)[a-z0-9\-_]*$/
else
- IDENTIFIER_RE = /^(?!\d+$)[a-z0-9\-]*$/
+ IDENTIFIER_RE = /^(?!\d+$)[a-z0-9\-_]*$/
end

validates_presence_of :project, :alias
</pre>

Back

Terms of use | Privacy policy