Skip to content

Commit

Permalink
make analyze the default action, since it is less destructive, and al…
Browse files Browse the repository at this point in the history
…phabectically first as well
  • Loading branch information
xzilla committed Apr 24, 2007
1 parent c7338c8 commit fc7ca6b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* List tables in a database
*
* $Id: tables.php,v 1.91 2007/04/22 00:41:58 mr-russ Exp $
* $Id: tables.php,v 1.92 2007/04/24 13:48:19 xzilla Exp $
*/

// Include application functions
Expand Down Expand Up @@ -790,21 +790,21 @@ function doDefault($msg = '') {
'keycols' => array('table' => 'relname'),
'url' => "{$PHP_SELF}",
'actions' => array(
'empty' => array(
'action' => 'confirm_empty',
'title' => $lang['strempty'],
'analyze' => array(
'action' => 'confirm_analyze',
'title' => $lang['stranalyze'],
),
'drop' => array(
'action' => 'confirm_drop',
'title' => $lang['strdrop'],
),
'empty' => array(
'action' => 'confirm_empty',
'title' => $lang['strempty'],
),
'vacuum' => array(
'action' => 'confirm_vacuum',
'title' => $lang['strvacuum'],
),
'analyze' => array(
'action' => 'confirm_analyze',
'title' => $lang['stranalyze'],
)
)
);
Expand Down

0 comments on commit fc7ca6b

Please sign in to comment.