mirror of
https://github.com/vrana/adminer.git
synced 2025-09-03 11:22:35 +02:00
Keep backward compatibility with non-official plugins
This commit is contained in:
@@ -224,11 +224,11 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
|
||||
return $val;
|
||||
}
|
||||
|
||||
function selectColumnsPrint(array $select, array $columns) {
|
||||
function selectColumnsPrint($select, $columns) {
|
||||
// can allow grouping functions by indexes
|
||||
}
|
||||
|
||||
function selectSearchPrint(array $where, array $columns, array $indexes) {
|
||||
function selectSearchPrint($where, $columns, $indexes) {
|
||||
$where = (array) $_GET["where"];
|
||||
echo '<fieldset id="fieldset-search"><legend>' . lang('Search') . "</legend><div>\n";
|
||||
$keys = array();
|
||||
@@ -281,7 +281,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
|
||||
echo "</div></fieldset>\n";
|
||||
}
|
||||
|
||||
function selectOrderPrint(array $order, array $columns, array $indexes) {
|
||||
function selectOrderPrint($order, $columns, $indexes) {
|
||||
//! desc
|
||||
$orders = array();
|
||||
foreach ($indexes as $key => $index) {
|
||||
@@ -654,7 +654,7 @@ qsl('div').onclick = whisperClick;", "")
|
||||
. "</div>\n";
|
||||
}
|
||||
|
||||
function tablesPrint(array $tables) {
|
||||
function tablesPrint($tables) {
|
||||
echo "<ul id='tables'>" . script("mixin(qs('#tables'), {onmouseover: menuOver, onmouseout: menuOut});");
|
||||
|
||||
foreach ($tables as $row) {
|
||||
|
Reference in New Issue
Block a user