]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typo
authorRobin Appelman <icewind@owncloud.com>
Tue, 3 Jun 2014 10:00:39 +0000 (12:00 +0200)
committerRobin Appelman <icewind@owncloud.com>
Tue, 3 Jun 2014 10:00:39 +0000 (12:00 +0200)
lib/private/db/migrationexception.php

index f3c908aa40a13a6c040cdf658701731a0b5accdf..2afec9700a004f25860d9535709bfdd0f2928a08 100644 (file)
@@ -13,7 +13,7 @@ class MigrationException extends \Exception {
        private $table;
 
        public function __construct($table, $message) {
-               $this->$table = $table;
+               $this->table = $table;
                parent::__construct($message);
        }