MS remove some stray puts
This commit is contained in:
parent
3b07596b1a
commit
24ca139241
2 changed files with 1 additions and 3 deletions
|
|
@ -10,7 +10,6 @@ class PublicsController < ApplicationController
|
|||
|
||||
def hcard
|
||||
@person = Person.find_by_id params[:id]
|
||||
puts @person
|
||||
unless @person.nil? || @person.owner.nil?
|
||||
render 'hcard'
|
||||
end
|
||||
|
|
@ -34,7 +33,6 @@ class PublicsController < ApplicationController
|
|||
return unless params[:xml]
|
||||
begin
|
||||
person = Person.first(:id => params[:id])
|
||||
puts person.real_name
|
||||
@user = person.owner
|
||||
rescue NoMethodError => e
|
||||
Rails.logger.error("Received post for nonexistent person #{params[:id]}")
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
|
||||
- content_for :page_title do
|
||||
= @person.real_name
|
||||
profile
|
||||
|
||||
- content_for :left_pane do
|
||||
#profile
|
||||
|
|
|
|||
Loading…
Reference in a new issue