From 27514f85c3ba9056c4609774a482a58605f4d8cf Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 16 Nov 2013 07:19:01 -0500 Subject: [PATCH] Fixed typo in variable name --- app/controllers/admin/DepreciationsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/admin/DepreciationsController.php b/app/controllers/admin/DepreciationsController.php index a72754beed34..0abdfe5325a5 100644 --- a/app/controllers/admin/DepreciationsController.php +++ b/app/controllers/admin/DepreciationsController.php @@ -148,7 +148,7 @@ public function postEdit($depreciationId = null) } // Redirect to the depreciation management page - return Redirect::to("admin/settings/depreciations/$depreciationID/edit")->with('error', Lang::get('admin/depreciations/message.update.error')); + return Redirect::to("admin/settings/depreciations/$depreciationId/edit")->with('error', Lang::get('admin/depreciations/message.update.error')); } /**