@bugs = MapBug.find_by_area(@min_lat, @min_lon, @max_lat, @max_lon, :include => :comments, :order => "updated_at DESC", :limit => limit, :conditions => conditions)
respond_to do |format|
- format.html {render :template => 'map_bugs/get_bugs.js', :content_type => "text/javascript"}
+ format.html {render :template => 'map_bugs/get_bugs.rjs', :content_type => "text/javascript"}
format.rss {render :template => 'map_bugs/get_bugs.rss'}
format.js
format.xml {render :template => 'map_bugs/get_bugs.xml'}
:conditions => conditions)
@bugs = bugs2.uniq
respond_to do |format|
- format.html {render :template => 'map_bugs/get_bugs.js', :content_type => "text/javascript"}
+ format.html {render :template => 'map_bugs/get_bugs.rjs', :content_type => "text/javascript"}
format.rss {render :template => 'map_bugs/get_bugs.rss'}
format.js
format.xml {render :template => 'map_bugs/get_bugs.xml'}
@page_size = 10
@bugs = MapBug.find(:all,
- :include => [:comments, {:comments => :user}],
+ :include => [:comments, {:comments => :author}],
:joins => :comments,
:order => "updated_at DESC",
:conditions => conditions,
sent_to = Set.new
bug.comments.each do | cmt |
- if cmt.user
- unless sent_to.include?(cmt.user)
- Notifier.deliver_bug_comment_notification(bug_comment, cmt.user) unless cmt.user == @user
- sent_to.add(cmt.user)
+ if cmt.author
+ unless sent_to.include?(cmt.author)
+ Notifier.deliver_bug_comment_notification(bug_comment, cmt.author) unless cmt.author == @user
+ sent_to.add(cmt.author)
end
end
end