diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-06-03 12:00:39 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-03 12:00:39 +0200 |
commit | 4429b54ce4fdf5aa2936dd733f5c1751d342177e (patch) | |
tree | a0bc38a855cf3a06b002814699f478352ec2106b /lib/private/db/migrationexception.php | |
parent | 82b982a4ebe42e98b800d58ec98c307d531d71f9 (diff) | |
download | nextcloud-server-4429b54ce4fdf5aa2936dd733f5c1751d342177e.tar.gz nextcloud-server-4429b54ce4fdf5aa2936dd733f5c1751d342177e.zip |
Fix typo
Diffstat (limited to 'lib/private/db/migrationexception.php')
-rw-r--r-- | lib/private/db/migrationexception.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |