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'] ); }