Skip to content

Commit

Permalink
Fix action to be index, not 'ham'
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Dec 28, 2010
1 parent 4bfe443 commit e29cb0e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/controllers/admin/inquiries_controller.rb
Expand Up @@ -3,7 +3,7 @@ class Admin::InquiriesController < Admin::BaseController
crudify :inquiry, :title_attribute => "name", :order => "created_at DESC"
helper_method :group_by_date

before_filter :find_all_ham, :only => [:ham]
before_filter :find_all_ham, :only => [:index]
before_filter :find_all_spam, :only => [:spam]
before_filter :get_spam_count, :only => [:index, :spam]

Expand Down
2 changes: 1 addition & 1 deletion lib/gemspec.rb
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
version = '0.9.9.8'
version = '0.9.9.9'
raise "Could not get version so gemspec can not be built" if version.nil?
files = Dir.glob("**/*").flatten.reject do |file|
file =~ /\.gem$/
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -6,7 +6,7 @@

Include the latest [gem](http://rubygems.org/gems/refinerycms-inquiries) into your Refinery CMS application's Gemfile:

gem 'refinerycms-inquiries', '~> 0.9.9.8'
gem 'refinerycms-inquiries', '~> 0.9.9.9'

Then type the following at command line inside your Refinery CMS application's root directory:

Expand Down
2 changes: 1 addition & 1 deletion refinerycms-inquiries.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{refinerycms-inquiries}
s.version = %q{0.9.9.8}
s.version = %q{0.9.9.9}
s.date = %q{2010-12-29}
s.summary = %q{Inquiry handling functionality for the Refinery CMS project.}
s.description = %q{Inquiry handling functionality extracted from Refinery CMS to allow you to have a contact form and manage inquiries in the Refinery backend.}
Expand Down

0 comments on commit e29cb0e

Please sign in to comment.