From 4429b54ce4fdf5aa2936dd733f5c1751d342177e Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Tue, 3 Jun 2014 12:00:39 +0200
Subject: [PATCH] Fix typo

---
 lib/private/db/migrationexception.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php
index f3c908aa40..2afec9700a 100644
--- a/lib/private/db/migrationexception.php
+++ b/lib/private/db/migrationexception.php
@@ -13,7 +13,7 @@ class MigrationException extends \Exception {
 	private $table;
 
 	public function __construct($table, $message) {
-		$this->$table = $table;
+		$this->table = $table;
 		parent::__construct($message);
 	}
 
-- 
GitLab