Skip to content

Commit

Permalink
Fix #2985. Missed in the field rename (#3014)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeltzer authored and snipe committed Dec 5, 2016
1 parent dd52b48 commit 927a12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/AssetModelsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public function store()
$model->category_id = e(Input::get('category_id'));
$model->model_number = e(Input::get('model_number'));
$model->user_id = Auth::user()->id;
$model->note = e(Input::get('note'));
$model->notes = e(Input::get('notes'));
$model->eol= null;

if (Input::get('fieldset_id')=='') {
Expand Down

0 comments on commit 927a12f

Please sign in to comment.