summaryrefslogtreecommitdiffstats
path: root/lib/private/db/migrationexception.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-06-03 12:00:39 +0200
committerRobin Appelman <icewind@owncloud.com>2014-06-03 12:00:39 +0200
commit4429b54ce4fdf5aa2936dd733f5c1751d342177e (patch)
treea0bc38a855cf3a06b002814699f478352ec2106b /lib/private/db/migrationexception.php
parent82b982a4ebe42e98b800d58ec98c307d531d71f9 (diff)
downloadnextcloud-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.php2
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);
}