From 45bc09826268b1c653c2692ccb6d170a8207f83a Mon Sep 17 00:00:00 2001 From: Robert Slootjes Date: Wed, 25 Jun 2014 16:21:44 +0200 Subject: [PATCH] Plugin edit-foreign: Add limit where it should stop creating a select --- plugins/edit-foreign.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/edit-foreign.php b/plugins/edit-foreign.php index 53e6a33c..82520d3e 100644 --- a/plugins/edit-foreign.php +++ b/plugins/edit-foreign.php @@ -7,6 +7,11 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerEditForeign { + var $_limit; + + function AdminerEditForeign($limit = 50) { + $this->_limit = $limit; + } function editInput($table, $field, $attrs, $value) { static $foreignTables = array(); @@ -22,6 +27,9 @@ class AdminerEditForeign { $options = &$values[$target][$id]; if (!$options) { $options = array("" => "") + get_vals("SELECT " . idf_escape($id) . " FROM " . table($target) . " ORDER BY 1"); + if (count($options) - 1 > $this->_limit) { + return; + } } return "" . optionlist($options, $value) . ""; }