@user.pass_crypt_confirmation = params[:user][:pass_crypt_confirmation]
end
- @user.description = params[:user][:description]
+ if params[:user][:description] != @user.description
+ @user.description = params[:user][:description]
+ @user.description_format = "markdown"
+ end
+
@user.languages = params[:user][:languages].split(",")
case params[:image_action]
##
# sets a user's status
def set_status
- @this_user.update_attributes(:status => params[:status])
+ @this_user.status = params[:status]
+ @this_user.save
redirect_to :controller => 'user', :action => 'view', :display_name => params[:display_name]
end
if user.save
set_locale
+ cookies.permanent["_osm_username"] = user.display_name
+
if user.new_email.blank?
flash.now[:notice] = t 'user.account.flash update success'
else
# Choose the layout to use. See
# https://rails.lighthouseapp.com/projects/8994/tickets/5371-layout-with-onlyexcept-options-makes-other-actions-render-without-layouts
def choose_layout
- oauth_url = url_for(:controller => :oauth, :action => :oauthorize, :only_path => true)
+ oauth_url = url_for(:controller => :oauth, :action => :authorize, :only_path => true)
if [ 'api_details' ].include? action_name
nil