Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-06-28 21:16:43 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-06-28 21:23:35 +0300
commitecb04a331b5196bde44a74212925326ff1a92075 (patch)
tree765c9f29aaf9c352832ff52fb169a72ac72d3c11 /lib/Controller
parentffb28c62beff7492a90842a294bd680f165f324e (diff)
autocomplete for tables
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/SettingsController.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Controller/SettingsController.php b/lib/Controller/SettingsController.php
index 7a95d6c..8c4a9fb 100644
--- a/lib/Controller/SettingsController.php
+++ b/lib/Controller/SettingsController.php
@@ -266,7 +266,8 @@ class SettingsController extends Controller
try {
$connection = $this->getConnection();
$platform = PlatformFactory::getPlatform($connection);
- $tables = $platform->getTables();
+ $input = $this->request->getParam("input");
+ $tables = $platform->getTables($input);
$this->logger->debug(
"Returning tableAutocomplete(): count(" . count($tables) . ")",