1
0
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:
Peter Knut
2024-10-22 12:37:50 +02:00
parent 7883e0bd99
commit 555e2e76b7
3 changed files with 12 additions and 12 deletions

View File

@@ -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) {