From a10da2e14850e1d6cbfbd1f2c41e1f4572c43859 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 25 Mar 2016 18:29:45 -0700 Subject: [PATCH] Fixes error loading consumables --- app/Http/Controllers/ConsumablesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ConsumablesController.php b/app/Http/Controllers/ConsumablesController.php index 86e1eb4e0b..f6bf9c7166 100644 --- a/app/Http/Controllers/ConsumablesController.php +++ b/app/Http/Controllers/ConsumablesController.php @@ -407,7 +407,7 @@ class ConsumablesController extends Controller foreach ($consumables as $consumable) { $actions = 'numRemaining() > 0 ) ? '' : ' disabled').'>'.Lang::get('general.checkout').''; - $company = e($consumable->company); + $company = $consumable->company; $rows[] = array( 'id' => $consumable->id,