Navigation and column changing

This commit is contained in:
Marc Delisle 2012-12-18 15:13:30 -05:00
parent aac1a7b8c6
commit 813b39f29b

View File

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