Skip to content

Commit

Permalink
Minor fix - Table prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
yama committed Oct 2, 2016
1 parent e01a198 commit d5432ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install/connection.databasetest.php
Expand Up @@ -19,7 +19,8 @@
else
{
$dbase = trim($_POST['dbase'],'`');
$table_prefix = $_POST['table_prefix'];
$table_prefix = trim($_POST['table_prefix']);
$table_prefix = trim($table_prefix,'_').'_';
$database_collation = getOption('database_collation');
$database_connection_method = $_POST['database_connection_method'];

Expand Down

0 comments on commit d5432ce

Please sign in to comment.