Duh. Helps if you actually assign the array first.

This commit is contained in:
snipe 2017-10-18 08:45:05 -07:00
parent 447833c996
commit c0e50be03e

View file

@ -376,10 +376,10 @@ class AssetModelsController extends Controller
*/
public function postBulkEdit(Request $request)
{
if (is_array($models_raw_array)) {
$models_raw_array = Input::get('ids');
if (is_array($models_raw_array)) {
$models = AssetModel::whereIn('id', $models_raw_array)->get();
$nochange = ['NC' => 'No Change'];
$fieldset_list = $nochange + Helper::customFieldsetList();