Use consistent new-style hashes in render calls *twitch*

This commit is contained in:
Sarah Vessels
2013-03-22 14:08:11 -04:00
parent 3d4fb43c73
commit 54c7b1ab63
9 changed files with 27 additions and 27 deletions

View File

@ -6,9 +6,9 @@ class ForumsController < ApplicationController
def status
if $shutdown
render :text => 'shutting down', :status => 500
render text: 'shutting down', :status => 500
else
render :text => 'ok'
render text: 'ok'
end
end