Browse Source

Fixed warning: toplevel constant User referenced by WikiContent::User

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1000 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.6.2
Jean-Philippe Lang 16 years ago
parent
commit
124ef65c1f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app/models/wiki_content.rb

+ 2
- 2
app/models/wiki_content.rb View File

@@ -25,8 +25,8 @@ class WikiContent < ActiveRecord::Base
acts_as_versioned
class Version
belongs_to :page, :class_name => 'WikiPage', :foreign_key => 'page_id'
belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
belongs_to :page, :class_name => '::WikiPage', :foreign_key => 'page_id'
belongs_to :author, :class_name => '::User', :foreign_key => 'author_id'
attr_protected :data

acts_as_event :title => Proc.new {|o| "#{l(:label_wiki_edit)}: #{o.page.title} (##{o.version})"},

Loading…
Cancel
Save