Fixed editing of VIEW structure
Fixes #12171 Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
586e238f01
commit
df08b53e43
@ -24,6 +24,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #12217 Fixed javascript erros on user creation
|
||||
- issue #12144 Fixed parsing of some AS clauses
|
||||
- issue #12205 Fixed parsing of FULL OUTER JOIN queries
|
||||
- issue #12171 Fixed editing of VIEW structure
|
||||
|
||||
4.6.0.0 (2016-03-22)
|
||||
+ issue #11456 Disabled storage engines
|
||||
|
||||
@ -317,14 +317,14 @@ class TableStructureController extends TableController
|
||||
// got to be eliminated in long run
|
||||
$db = &$this->db;
|
||||
$table = &$this->table;
|
||||
$url_params = array();
|
||||
include_once 'libraries/tbl_common.inc.php';
|
||||
$this->_db_is_system_schema = $db_is_system_schema;
|
||||
$this->_url_query = $url_query
|
||||
. '&goto=tbl_structure.php&back=tbl_structure.php';
|
||||
$url_params = array(
|
||||
'goto' => 'tbl_structure.php',
|
||||
'back' => 'tbl_structure.php',
|
||||
);
|
||||
/* The url_params array is initialized in above include */
|
||||
$url_params['goto'] = 'tbl_structure.php';
|
||||
$url_params['back'] = 'tbl_structure.php';
|
||||
|
||||
/**
|
||||
* Gets tables information
|
||||
|
||||
Loading…
Reference in New Issue
Block a user