Skip to content

Commit

Permalink
Merge pull request #37020 from 0k/master
Browse files Browse the repository at this point in the history
Remove unecessary constraint on database name
  • Loading branch information
micbar authored Mar 2, 2020
2 parents 4799975 + 9976308 commit cb8d8cd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/private/Setup/AbstractDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ public function validate($config) {
} elseif (empty($config['dbname'])) {
$errors[] = $this->trans->t("%s enter the database name.", [$this->dbprettyname]);
}
if (\substr_count($config['dbname'], '.') >= 1) {
$errors[] = $this->trans->t("%s you may not use dots in the database name", [$this->dbprettyname]);
}
return $errors;
}

Expand Down

0 comments on commit cb8d8cd

Please sign in to comment.