diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-08 06:23:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-08 06:23:38 +0000 |
commit | 166cecf2d71b422ee5ca600c9290873415581c07 (patch) | |
tree | 65533dea2d25a93f80791bbf5b4182630f7cd104 /install.php | |
parent | 8f535993ed9ba3a82b7c7c694439c66107295f66 (diff) | |
download | brdo-166cecf2d71b422ee5ca600c9290873415581c07.tar.gz brdo-166cecf2d71b422ee5ca600c9290873415581c07.tar.bz2 |
- Patch #87819 by webchick: '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 e3ea9ff5d..b45f0c28a 100644 --- a/install.php +++ b/install.php @@ -261,10 +261,10 @@ function install_settings_form($profile, $install_locale, $settings_file, $db_ur '#description' => st('If your database server is listening to a non-standard port, enter its number.'), ); - // Database prefix + // Table prefix $form['advanced_options']['db_prefix'] = array( '#type' => 'textfield', - '#title' => st('Database prefix'), + '#title' => st('Table prefix'), '#default_value' => $db_prefix, '#size' => 45, '#maxlength' => 45, |