? sites/default/files ? sites/default/settings.php Index: install.php =================================================================== RCS file: /cvs/drupal/drupal/install.php,v retrieving revision 1.127 diff -u -p -r1.127 install.php --- install.php 28 Aug 2008 08:40:32 -0000 1.127 +++ install.php 31 Aug 2008 05:16:40 -0000 @@ -342,8 +342,8 @@ function install_settings_form_validate( function _install_settings_form_validate($database, $settings_file, &$form_state, $form = NULL) { global $databases; // Verify the table prefix - if (!empty($database['prefix']) && is_string($database['prefix']) && !preg_match('/^[A-Za-z0-9_.]+$/', $database['dprefix'])) { - 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, periods, or underscores.', array('%db_prefix' => $db_prefix)), 'error'); + if (!empty($database['prefix']) && is_string($database['prefix']) && !preg_match('/^[A-Za-z0-9_]+$/', $database['dprefix'])) { + 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($database['port']) && !is_numeric($database['port'])) {