Dropped more pointless target attributes

This commit is contained in:
Rouslan Placella 2012-11-05 22:30:39 +00:00
parent 87731d1ea5
commit 99ee0fa246

View File

@ -30,7 +30,7 @@ function PMA_selectServer($not_only_options, $ommit_fieldset)
}
if ($not_only_options) {
$retval .= '<form method="post" action="' . $GLOBALS['cfg']['DefaultTabServer'] . '" target="_parent">';
$retval .= '<form method="post" action="' . $GLOBALS['cfg']['DefaultTabServer'] . '" class="disableAjax">';
$retval .= PMA_generate_common_hidden_inputs();
if (! $ommit_fieldset) {
@ -81,9 +81,9 @@ function PMA_selectServer($not_only_options, $ommit_fieldset)
$retval .= '<strong>' . htmlspecialchars($label) . '</strong>';
} else {
$retval .= '<a class="item" href="' . $GLOBALS['cfg']['DefaultTabServer']
$retval .= '<a class="disableAjax item" href="' . $GLOBALS['cfg']['DefaultTabServer']
. PMA_generate_common_url(array('server' => $key))
. '" target="_top">' . htmlspecialchars($label) . '</a>';
. '" >' . htmlspecialchars($label) . '</a>';
}
$retval .= '</li>';
} else {