diff options
author | nirgal | 2019-10-08 15:42:12 +0000 |
---|---|---|
committer | GitHub | 2019-10-08 15:42:12 +0000 |
commit | 2b8f7135b702075a29e647568f21e0772ce0de93 (patch) | |
tree | d77890bad2ec77daea5abc8f40259d7fb629fc24 | |
parent | 22b1a3eecb9827f5bafa0e167ead8acb4e7a0ed4 (diff) |
xtree: tables & views can't expand the browse item
In the left tree, in tables and views, when one click on the + of browse, a message like "Erreur lors du chargement display.php?action=tree&return=schema&subject=view&view=test+vue&server=localhost%3A5432%3Aallow&database=bug422&schema=public (200: OK)" is displayed.
These items don't support tree actions, and the tree expansion should be be offered in the first place.
-rw-r--r-- | classes/Misc.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/classes/Misc.php b/classes/Misc.php index 281ba38b..87a5eb6f 100644 --- a/classes/Misc.php +++ b/classes/Misc.php @@ -1023,7 +1023,6 @@ 'url' => 'display.php', 'urlvars' => array ('subject' => 'table','table' => field('table')), 'return' => 'table', - 'branch'=> true, ), 'select' => array( 'title' => $lang['strselect'], @@ -1129,7 +1128,6 @@ 'subject' => 'view', 'view' => field('view') ), - 'branch'=> true, ), 'select' => array( 'title' => $lang['strselect'], |