Redirect to a back_url when deleting a rate also. #1919

This commit is contained in:
Eric Davis
2009-01-20 11:29:33 -08:00
parent a294ff0154
commit dc8dd4abe4
2 changed files with 14 additions and 1 deletions
+7 -1
View File
@@ -108,7 +108,13 @@ class RatesController < ApplicationController
@rate.destroy
respond_to do |format|
format.html { redirect_to(rates_url(:user_id => @rate.user_id)) }
format.html {
if params[:back_url] && !params[:back_url].blank?
redirect_to(params[:back_url])
else
redirect_to(rates_url(:user_id => @rate.user_id))
end
}
format.xml { head :ok }
end
end