Redirect_to_url Deperecated

Silently dropped, more precisely, from Rails 2.2. Just use redirect_to instead.
This commit is contained in:
Jacques Distler 2008-11-06 22:57:53 -06:00
parent daa12e575d
commit 3efc067f06

View file

@ -96,7 +96,7 @@ class ApplicationController < ActionController::Base
if web if web
redirect_to_page('HomePage', web) redirect_to_page('HomePage', web)
else else
redirect_to_url '/' redirect_to '/'
end end
end end
@ -144,7 +144,7 @@ class ApplicationController < ActionController::Base
else else
logger.debug("Session ##{session.object_id}: " + logger.debug("Session ##{session.object_id}: " +
"redirect to the last remembered URL #{redirect_target}") "redirect to the last remembered URL #{redirect_target}")
redirect_to_url(redirect_target) redirect_to(redirect_target)
end end
end end