diff options
Diffstat (limited to 'includes/install.mysqli.inc')
-rw-r--r-- | includes/install.mysqli.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/install.mysqli.inc b/includes/install.mysqli.inc index e1b5d34a6..087f1e9a4 100644 --- a/includes/install.mysqli.inc +++ b/includes/install.mysqli.inc @@ -54,7 +54,7 @@ function drupal_test_mysqli($url, &$success) { $success = array('CONNECT'); // Test CREATE. - $query = 'CREATE TABLE drupal_install_test (id int(1) NULL)'; + $query = 'CREATE TABLE drupal_install_test (id int NULL)'; $result = mysqli_query($connection, $query); if ($error = mysqli_error($connection)) { drupal_set_message(st('We were unable to create a test table on your MySQL database server with the command %query. MySQL reports the following message: %error.<ul><li>Are you sure the configured username has the necessary MySQL permissions to create tables in the database?</li></ul>For more help, see the <a href="http://drupal.org/node/258">Installation and upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%query' => $query, '%error' => $error)), 'error'); |