You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
588 B

  1. diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php
  2. index 0cbfecf..a821a2e 100644
  3. --- a/lib/private/Setup/AbstractDatabase.php
  4. +++ b/lib/private/Setup/AbstractDatabase.php
  5. @@ -72,9 +72,6 @@ abstract class AbstractDatabase {
  6. } elseif (empty($config['dbname'])) {
  7. $errors[] = $this->trans->t("%s enter the database name.", [$this->dbprettyname]);
  8. }
  9. - if(substr_count($config['dbname'], '.') >= 1) {
  10. - $errors[] = $this->trans->t("%s you may not use dots in the database name", array($this->dbprettyname));
  11. - }
  12. return $errors;
  13. }