bug #1376314, detection of privilege to create a table

This commit is contained in:
Marc Delisle
2006-01-19 17:13:20 +00:00
parent c3a65a7792
commit c7b5fd2e3f
2 changed files with 16 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ $Source$
2006-01-19 Marc Delisle <lem9@users.sourceforge.net>
* main.php: already defined constant
* libraries/display_create_table.lib.php: bug #1376314, I remove
the check to detect the privilege to create a table (see comments
in the code)
2006-01-19 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* pdf_schema.php, db_details_qbe.php, libraries\display_tbl.lib.php,

View File

@@ -16,6 +16,18 @@ require_once('./libraries/check_user_privileges.lib.php');
//
// Note: in this case we could even skip the following "foreach" logic
// Addendum, 2006-01-19: ok, I give up. We got some reports about servers
// where the hostname field in mysql.user is not the same as the one
// in mysql.db for a user. In this case, SHOW GRANTS does not return
// the db-specific privileges. And probably, those users are on a shared
// server, so can't set up a control user with rights to the "mysql" db.
// We cannot reliably detect the db-specific privileges, so no more
// warnings about the lack of privileges for CREATE TABLE. Tested
// on MySQL 5.0.18.
$is_create_table_priv = true;
/*
if (PMA_MYSQL_INT_VERSION >= 40100) {
$is_create_table_priv = false;
} else {
@@ -80,7 +92,7 @@ foreach ( $dbs_where_create_table_allowed as $allowed_db ) {
}
} // end foreach
unset($i, $max_position, $chunk, $pattern);
*/
?>
<form method="post" action="tbl_create.php"
onsubmit="return (emptyFormElements(this, 'table') &amp;&amp; checkFormElementInRange(this, 'num_fields', '<?php echo str_replace('\'', '\\\'', $GLOBALS['strInvalidFieldCount']); ?>', 1))">