diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-08 06:25:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-08 06:25:19 +0000 |
commit | aa9d96f66129cd8acb70f04f983ad3d52be11ffa (patch) | |
tree | 6845b9d72320f4045cf1d5e51a48321092465c7c /install.php | |
parent | 166cecf2d71b422ee5ca600c9290873415581c07 (diff) | |
download | brdo-aa9d96f66129cd8acb70f04f983ad3d52be11ffa.tar.gz brdo-aa9d96f66129cd8acb70f04f983ad3d52be11ffa.tar.bz2 |
- Patch by me: 'database prefix' -> 'table prefix'
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index b45f0c28a..ab425ace3 100644 --- a/install.php +++ b/install.php @@ -303,9 +303,9 @@ function _install_settings_form_validate($db_prefix, $db_type, $db_user, $db_pas form_set_error('db_user', st('You have configured @drupal to use the default username and password. This is not allowed for security reasons.', array('@drupal' => drupal_install_profile_name()))); } - // Verify database prefix + // 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 prefix you have entered, %db_prefix, is invalid. The database prefix can only contain alphanumeric characters and underscores.', array('%db_prefix' => $db_prefix)), 'error'); + 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_port) && !is_numeric($db_port)) { |