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); }