Change update_attributes to update

This commit is contained in:
1resu 2021-12-18 15:05:53 +01:00
parent 6340e224ed
commit c7a74c8e7d
4 changed files with 4 additions and 4 deletions

View file

@ -64,7 +64,7 @@ class SuppliersController < ApplicationController
# don't set password to blank on saving
attrs = attrs.reject {|k,v| k == 'ftp_password' } if attrs[:ftp_password].blank?
if @supplier.update_attributes(attrs)
if @supplier.update(attrs)
flash[:notice] = 'Supplier was successfully updated.'
format.html { redirect_to supplier_url(@supplier) }
format.xml { head :ok }