Commit d54e2a0d872b0ab92cef8f3c84cac07bbd34e7fb
1 parent
bbc4e168
Exists in
master
and in
29 other branches
Remove debug statements left behind
Showing
1 changed file
with
0 additions
and
4 deletions
Show diff stats
app/helpers/profile_helper.rb
... | ... | @@ -73,7 +73,6 @@ module ProfileHelper |
73 | 73 | return '' |
74 | 74 | end |
75 | 75 | value = begin profile.send(field) rescue nil end |
76 | - p field | |
77 | 76 | if !value.blank? |
78 | 77 | entries = multiple ? value : [] << value |
79 | 78 | entries.map do |entry| |
... | ... | @@ -98,7 +97,6 @@ module ProfileHelper |
98 | 97 | end |
99 | 98 | |
100 | 99 | def treat_date(date) |
101 | - puts date.inspect | |
102 | 100 | show_date(date.to_date) |
103 | 101 | end |
104 | 102 | alias :treat_birth_date :treat_date |
... | ... | @@ -133,12 +131,10 @@ module ProfileHelper |
133 | 131 | end |
134 | 132 | |
135 | 133 | def treat_blogs(blog) |
136 | - p blog | |
137 | 134 | link_to(n_('One post', '%{num} posts', blog.posts.published.count) % { :num => blog.posts.published.count }, blog.url) |
138 | 135 | end |
139 | 136 | |
140 | 137 | def treat_image_galleries(gallery) |
141 | - p gallery | |
142 | 138 | link_to(n_('One picture', '%{num} pictures', gallery.images.published.count) % { :num => gallery.images.published.count }, gallery.url) |
143 | 139 | end |
144 | 140 | ... | ... |