summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-11-11 06:56:44 +0000
committerDries Buytaert <dries@buytaert.net>2007-11-11 06:56:44 +0000
commit073eb45833be1c36d804c456c1258a697353fc70 (patch)
tree1125c35f32d4d18553b304ae1cdce7cad251f22c /install.php
parent049c6ddd96d727e0ba14ad97cf9a3c6575377669 (diff)
downloadbrdo-073eb45833be1c36d804c456c1258a697353fc70.tar.gz
brdo-073eb45833be1c36d804c456c1258a697353fc70.tar.bz2
- Patch #191073 by Keith: another good string cleanup by Keith. (Also removed some trailing whitespace.)
Diffstat (limited to 'install.php')
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index 673b7e44c..66ee2d980 100644
--- a/install.php
+++ b/install.php
@@ -371,7 +371,7 @@ 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, underscores or dots.', 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, periods, or underscores.', array('%db_prefix' => $db_prefix)), 'error');
}
if (!empty($db_port) && !is_numeric($db_port)) {