Skip to content
Snippets Groups Projects
Commit 166cecf2 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #87819 by webchick: 'database prefix' -> 'table prefix'

parent 8f535993
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -261,10 +261,10 @@ function install_settings_form($profile, $install_locale, $settings_file, $db_ur ...@@ -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.'), '#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( $form['advanced_options']['db_prefix'] = array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => st('Database prefix'), '#title' => st('Table prefix'),
'#default_value' => $db_prefix, '#default_value' => $db_prefix,
'#size' => 45, '#size' => 45,
'#maxlength' => 45, '#maxlength' => 45,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment