From 5b27a34f050646467a178ff780efc80036aadf1b Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 19 Nov 2013 05:30:04 -0500 Subject: [PATCH] Fixed fieldname in userlog --- app/models/Actionlog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/Actionlog.php b/app/models/Actionlog.php index c560a53d20..018fe50fc3 100644 --- a/app/models/Actionlog.php +++ b/app/models/Actionlog.php @@ -15,7 +15,7 @@ class ActionLog extends Eloquent { } public function userlog() { - return $this->belongsTo('User','assigned_to'); + return $this->belongsTo('User','checkedout_to'); }