#103519: Allow dot in database table prefix.

5.x
Steven Wittens 2006-12-17 06:51:47 +00:00
parent c6a190ea10
commit c1f9032c91
1 changed files with 2 additions and 2 deletions

View File

@ -309,8 +309,8 @@ function _install_settings_form_validate($db_prefix, $db_type, $db_user, $db_pas
}
// Verify the table prefix
if (!empty($db_prefix) && is_string($db_prefix) && preg_match('/[^A-Za-z0-9_]/', $db_prefix)) {
form_set_error('db_prefix', st('The database table prefix you have entered, %db_prefix, is invalid. The table prefix can only contain alphanumeric characters and underscores.', array('%db_prefix' => $db_prefix)), 'error');
if (!empty($db_prefix) && is_string($db_prefix) && !preg_match('/^[A-Za-z0-9_.]+$/', $db_prefix)) {
form_set_error('db_prefix', st('The database table prefix you have entered, %db_prefix, is invalid. The table prefix can only contain alphanumeric characters, underscores or dots.', array('%db_prefix' => $db_prefix)), 'error');
}
if (!empty($db_port) && !is_numeric($db_port)) {