Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/IndexesController.php')
-rw-r--r--src/controllers/IndexesController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/controllers/IndexesController.php b/src/controllers/IndexesController.php
index c37b5172..08be4fa6 100644
--- a/src/controllers/IndexesController.php
+++ b/src/controllers/IndexesController.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin v6.0.0-RC4
+ * PHPPgAdmin v6.0.0-RC5
*/
namespace PHPPgAdmin\Controller;
@@ -105,14 +105,14 @@ class IndexesController extends BaseController
};
$this->coalesceArr($_REQUEST, 'subject', 'table');
- $subject = urlencode($_REQUEST['subject']);
- $object = urlencode($_REQUEST[$_REQUEST['subject']]);
+ $subject = urlencode($this->getRequestParam('subject', 'table'));
+ $object = urlencode($this->getRequestParam($subject));
$this->printTrail($subject);
$this->printTabs($subject, 'indexes');
$this->printMsg($msg);
- $indexes = $data->getIndexes($_REQUEST[$_REQUEST['subject']]);
+ $indexes = $data->getIndexes($object);
$columns = [
'index' => [