Skip to content

Commit

Permalink
rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrp committed Jul 8, 2010
1 parent 54c3225 commit 104b40c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libraries/server_links.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
$tabs['synchronize']['text'] = __('Synchronize');

$tabs['settings']['icon'] = 'b_tblops.png';
$tabs['settings']['link'] = 'user_preferences.php';
$tabs['settings']['link'] = 'prefs_forms.php';
$tabs['settings']['text'] = __('Settings');

echo PMA_generate_html_tabs($tabs, array());
Expand Down
2 changes: 1 addition & 1 deletion main.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@

echo '<ul>';
echo PMA_printListItem(__('More settings'), 'li_user_preferences',
'./user_preferences.php?' . $common_url_query);
'./prefs_forms.php?' . $common_url_query);
echo '<ul>';

echo '</div>';
Expand Down
6 changes: 3 additions & 3 deletions user_preferences.php → prefs_forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
echo '<ul id="topmenu2">';
foreach (array_keys($forms) as $formset) {
$tab = array(
'link' => 'user_preferences.php',
'link' => 'prefs_forms.php',
'text' => PMA_lang('Form_' . $formset),
'icon' => $tabs_icons[$formset],
'active' => $formset == $form_param);
Expand Down Expand Up @@ -94,7 +94,7 @@
$form_display->fixErrors();
// redirect
$url_params = array('form' => $form_param);
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'user_preferences.php'
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'prefs_forms.php'
. PMA_generate_common_url($url_params, '&'));
exit;
}
Expand Down Expand Up @@ -135,7 +135,7 @@
'form' => $form_param,
'saved' => 1,
'refresh_left_frame' => $refresh_left_frame);
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'user_preferences.php'
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'prefs_forms.php'
. PMA_generate_common_url($url_params, '&'));
exit;
} else {
Expand Down

0 comments on commit 104b40c

Please sign in to comment.