diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-10-28 14:11:41 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-10-28 14:13:34 +0100 |
commit | bfb8436ca223d0401f2b7ff001cb9152387ca82d (patch) | |
tree | 89257dbc118c6a37a939a4504872da263c209bd9 /core | |
parent | edf3503779226dbebdd2ace2f619131f563501d1 (diff) | |
download | nextcloud-server-bfb8436ca223d0401f2b7ff001cb9152387ca82d.tar.gz nextcloud-server-bfb8436ca223d0401f2b7ff001cb9152387ca82d.zip |
deny the usage of dots in database name
Diffstat (limited to 'core')
-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 c0b29ea909d..5a3bd2cc9f0 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" /> + <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_]+" /> </p> </div> <?php endif; ?> |