Retrieve parameters from $_POST in chk_rel
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
This commit is contained in:
parent
e7e7d56c75
commit
593b2571cd
@ -13,20 +13,20 @@ require_once 'libraries/common.inc.php';
|
||||
$relation = new Relation();
|
||||
|
||||
// If request for creating the pmadb
|
||||
if (isset($_REQUEST['create_pmadb'])) {
|
||||
if (isset($_POST['create_pmadb'])) {
|
||||
if ($relation->createPmaDatabase()) {
|
||||
$relation->fixPmaTables('phpmyadmin');
|
||||
}
|
||||
}
|
||||
|
||||
// If request for creating all PMA tables.
|
||||
if (isset($_REQUEST['fixall_pmadb'])) {
|
||||
if (isset($_POST['fixall_pmadb'])) {
|
||||
$relation->fixPmaTables($GLOBALS['db']);
|
||||
}
|
||||
|
||||
$cfgRelation = $relation->getRelationsParam();
|
||||
// If request for creating missing PMA tables.
|
||||
if (isset($_REQUEST['fix_pmadb'])) {
|
||||
if (isset($_POST['fix_pmadb'])) {
|
||||
$relation->fixPmaTables($cfgRelation['db']);
|
||||
}
|
||||
|
||||
|
||||
@ -298,7 +298,7 @@ if (!$is_information_schema) {
|
||||
'%sFind out why%s.'
|
||||
)
|
||||
);
|
||||
$message->addParamHtml('<a href="./chk_rel.php' . $url_query . '">');
|
||||
$message->addParamHtml('<a href="./chk_rel.php" data-post="' . $url_query . '">');
|
||||
$message->addParamHtml('</a>');
|
||||
/* Show error if user has configured something, notice elsewhere */
|
||||
if (!empty($cfg['Servers'][$server]['pmadb'])) {
|
||||
|
||||
@ -621,7 +621,7 @@ if ($server > 0) {
|
||||
);
|
||||
}
|
||||
$msg = Message::notice($msg_text);
|
||||
$msg->addParamHtml('<a href="./chk_rel.php' . $common_url_query . '">');
|
||||
$msg->addParamHtml('<a href="./chk_rel.php" data-post="' . $common_url_query . '">');
|
||||
$msg->addParamHtml('</a>');
|
||||
/* Show error if user has configured something, notice elsewhere */
|
||||
if (!empty($cfg['Servers'][$server]['pmadb'])) {
|
||||
|
||||
@ -1994,7 +1994,7 @@ class Relation
|
||||
{
|
||||
$retval = '';
|
||||
|
||||
$url_query = Url::getCommon(array('db' => $GLOBALS['db']));
|
||||
$url_query = Url::getCommon(array('db' => $GLOBALS['db']), '');
|
||||
if ($allTables) {
|
||||
if ($createDb) {
|
||||
$url_query .= '&goto=db_operations.php&create_pmadb=1';
|
||||
@ -2019,7 +2019,7 @@ class Relation
|
||||
__('%sCreate%s missing phpMyAdmin configuration storage tables.')
|
||||
);
|
||||
}
|
||||
$message->addParamHtml('<a href="./chk_rel.php' . $url_query . '">');
|
||||
$message->addParamHtml('<a href="./chk_rel.php" data-post="' . $url_query . '">');
|
||||
$message->addParamHtml('</a>');
|
||||
|
||||
$retval .= $message->getDisplay();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user