summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2010-05-09 11:20:59 +0200
committerhukl <contact@smyck.org>2010-05-09 11:20:59 +0200
commitb24df82fee134f13e2dd589d6b611b7b761ea14d (patch)
treedfe0c429651e99fffa50ae97d4a7f94325c350b2
parent2f66379cf41ed43c18851050f84cf8783c36d458 (diff)
only respond to html requests here
-rw-r--r--app/controllers/tags_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb
index 473dce4..aef6e83 100644
--- a/app/controllers/tags_controller.rb
+++ b/app/controllers/tags_controller.rb
@@ -19,6 +19,10 @@ class TagsController < ApplicationController
19 :per_page => 23 19 :per_page => 23
20 ) 20 )
21 ) 21 )
22
23 respond_to do |format|
24 format.html {}
25 end
22 end 26 end
23 27
24end 28end