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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiki <amoo_miki@yahoo.com>2018-07-05 01:00:28 +0300
committerMaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>2018-07-05 01:07:37 +0300
commit914745dbaaed450b044475cdb0f6c68772f8ce02 (patch)
treef95222b4161d37606953ee435e54895a0a50d862 /view_create.php
parentfca206f27a870fd62df6e501cdc4e2b54aa73898 (diff)
Populate options for view create and edit (#14377)
Signed-off-by: Miki <amoo_miki@yahoo.com> (cherry picked from commit da8b6a90dfe1429b06bc7485043dad2b9d5cd610) Signed-off-by: MaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'view_create.php')
-rw-r--r--view_create.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/view_create.php b/view_create.php
index a8f8277575..184d3f0d02 100644
--- a/view_create.php
+++ b/view_create.php
@@ -196,8 +196,11 @@ $url_params['db'] = $GLOBALS['db'];
$url_params['reload'] = 1;
echo Template::get('view_create')->render([
- 'ajax_dialog' => isset($_REQUEST['ajax_dialog']),
- 'text_dir' => $text_dir,
- 'url_params' => $url_params,
- 'view' => $view,
+ 'ajax_dialog' => isset($_REQUEST['ajax_dialog']),
+ 'text_dir' => $text_dir,
+ 'url_params' => $url_params,
+ 'view' => $view,
+ 'view_algorithm_options' => $view_algorithm_options,
+ 'view_with_options' => $view_with_options,
+ 'view_security_options' => $view_security_options,
]);