diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-11-29 15:08:05 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-11-29 15:08:05 +0100 |
commit | a0fe53d09adcb95b2b4edfd001346206f0a1bd8b (patch) | |
tree | 0c4bc4f17424bcbdd18157e4a7cebd2bef5b00e3 /core/templates/installation.php | |
parent | c38a75e03f9db02b82e71472d2f719079eb44829 (diff) | |
download | nextcloud-server-a0fe53d09adcb95b2b4edfd001346206f0a1bd8b.tar.gz nextcloud-server-a0fe53d09adcb95b2b4edfd001346206f0a1bd8b.zip |
fix pattern for database names
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 1e7983eae53..908e7301062 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -111,7 +111,7 @@ </p> <p class="infield"> <label for="dbname" class="infield"><?php echo $l->t( 'Database name' ); ?></label> - <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_]+" /> + <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[^.]+" /> </p> </div> <?php endif; ?> |