]> source.dussan.org Git - redmine.git/commitdiff
Fixed: can not access old projects created with a numeric identifier (#1322).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 29 May 2008 17:42:10 +0000 (17:42 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 29 May 2008 17:42:10 +0000 (17:42 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1473 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index e560f1dac094c749c028f256090dec1da3b743ee..f05ccb2afd1e0af4007e46114db46a0fcd3e3ff2 100644 (file)
@@ -144,7 +144,8 @@ class Project < ActiveRecord::Base
   end
  
   def to_param
-    identifier
+    # id is used for projects with a numeric identifier (compatibility)
+    @to_param ||= (identifier.to_s =~ %r{^\d*$} ? id : identifier)
   end
   
   def active?