mirror of
https://github.com/vrana/adminer.git
synced 2025-09-02 19:02:36 +02:00
Keep backward compatibility with non-official plugins
This commit is contained in:
@@ -399,7 +399,7 @@ class Adminer {
|
||||
* @param array $select result of selectColumnsProcess()[0]
|
||||
* @param array $columns selectable columns
|
||||
*/
|
||||
function selectColumnsPrint(array $select, array $columns) {
|
||||
function selectColumnsPrint($select, $columns) {
|
||||
global $functions, $grouping;
|
||||
|
||||
print_fieldset("select", lang('Select'), $select, true);
|
||||
@@ -447,7 +447,7 @@ class Adminer {
|
||||
* @param array $where result of selectSearchProcess()
|
||||
* @param array $columns selectable columns
|
||||
*/
|
||||
function selectSearchPrint(array $where, array $columns, array $indexes) {
|
||||
function selectSearchPrint($where, $columns, $indexes) {
|
||||
print_fieldset("search", lang('Search'), $where);
|
||||
|
||||
foreach ($indexes as $i => $index) {
|
||||
@@ -489,7 +489,7 @@ class Adminer {
|
||||
* @param array $order result of selectOrderProcess()
|
||||
* @param array $columns selectable columns
|
||||
*/
|
||||
function selectOrderPrint(array $order, array $columns, array $indexes) {
|
||||
function selectOrderPrint($order, $columns, $indexes) {
|
||||
print_fieldset("sort", lang('Sort'), $order, true);
|
||||
|
||||
$_GET["order"][""] = "";
|
||||
@@ -1199,7 +1199,7 @@ bodyLoad('<?php echo (is_object($connection) ? preg_replace('~^(\d\.?\d).*~s', '
|
||||
* @param array $tables Result of table_status('', true)
|
||||
* @return null
|
||||
*/
|
||||
function tablesPrint(array $tables) {
|
||||
function tablesPrint($tables) {
|
||||
echo "<ul id='tables'>" . script("mixin(qs('#tables'), {onmouseover: menuOver, onmouseout: menuOut});");
|
||||
|
||||
foreach ($tables as $table => $status) {
|
||||
|
Reference in New Issue
Block a user