Merge remote branch 'origin/master'
This commit is contained in:
@@ -1936,8 +1936,8 @@ function PMA_checkParameters($params, $die = true, $request = true)
|
|||||||
if (!isset($GLOBALS[$param])) {
|
if (!isset($GLOBALS[$param])) {
|
||||||
$error_message .= $reported_script_name
|
$error_message .= $reported_script_name
|
||||||
. ': Missing parameter: ' . $param
|
. ': Missing parameter: ' . $param
|
||||||
. ' <a href="./Documentation.html#faqmissingparameters"'
|
. PMA_showDocu('faqmissingparameters')
|
||||||
. ' target="documentation"> (FAQ 2.8)</a><br />';
|
. '<br />';
|
||||||
$found_error = true;
|
$found_error = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -156,9 +156,11 @@ echo PMA_generate_common_hidden_inputs($form_params);
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>
|
<legend>
|
||||||
<?php
|
<?php
|
||||||
echo (isset($_REQUEST['create_index'])
|
if (isset($_REQUEST['create_index'])) {
|
||||||
? __('Create a new index')
|
echo __('Create a new index');
|
||||||
: __('Modify an index');
|
} else {
|
||||||
|
echo __('Modify an index');
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</legend>
|
</legend>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user