From 813b39f29b0d620fef7093e738e50922dc0dbb0c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 18 Dec 2012 15:13:30 -0500 Subject: [PATCH] Navigation and column changing --- libraries/navigation/Nodes/Node_Column.class.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libraries/navigation/Nodes/Node_Column.class.php b/libraries/navigation/Nodes/Node_Column.class.php index e861386fb1..9c663e7ad0 100644 --- a/libraries/navigation/Nodes/Node_Column.class.php +++ b/libraries/navigation/Nodes/Node_Column.class.php @@ -31,11 +31,13 @@ class Node_Column extends Node parent::__construct($name, $type, $is_group); $this->icon = PMA_Util::getImage('pause.png', ''); $this->links = array( - 'text' => 'tbl_alter.php?server=' . $GLOBALS['server'] + 'text' => 'tbl_structure.php?server=' . $GLOBALS['server'] . '&db=%3$s&table=%2$s&field=%1$s' + . '&change_column=1' . '&token=' . $GLOBALS['token'], - 'icon' => 'tbl_alter.php?server=' . $GLOBALS['server'] + 'icon' => 'tbl_structure.php?server=' . $GLOBALS['server'] . '&db=%3$s&table=%2$s&field=%1$s' + . '&change_column=1' . '&token=' . $GLOBALS['token'] ); }