Merge remote-tracking branch 'origin/master'

This commit is contained in:
Michal Čihař 2012-03-15 17:38:41 +01:00
commit 2f60f4056b

View File

@ -23,6 +23,26 @@ $cfgRelation = PMA_getRelationsParam();
require_once './libraries/db_table_exists.lib.php';
/**
* Sets globals from $_REQUEST
*/
$request_params = array(
'cn',
'ct',
'newHeight',
'newWidth',
'resize',
'sql_query',
'transform_key',
'where_clause'
);
foreach ($request_params as $one_request_param) {
if (isset($_REQUEST[$one_request_param])) {
$GLOBALS[$one_request_param] = $_REQUEST[$one_request_param];
}
}
/**
* Get the list of the fields of the current table
*/