From: Robin Appelman Date: Tue, 3 Jun 2014 10:00:39 +0000 (+0200) Subject: Fix typo X-Git-Tag: v7.0.0alpha2~141^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4429b54ce4fdf5aa2936dd733f5c1751d342177e;p=nextcloud-server.git Fix typo --- diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php index f3c908aa40a..2afec9700a0 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); }