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:30:11 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-06-28 21:30:14 +0300
commita257855e07ec81b580f401da65f17420d099fafd (patch)
tree5bdffea4e950ec42bea76c6f1466aa7a10c071b2 /lib/Controller
parentecb04a331b5196bde44a74212925326ff1a92075 (diff)
autocomplete for columns
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 8c4a9fb..a192daf 100644
--- a/lib/Controller/SettingsController.php
+++ b/lib/Controller/SettingsController.php
@@ -315,7 +315,8 @@ class SettingsController extends Controller
$connection = $this->getConnection();
$platform = PlatformFactory::getPlatform($connection);
$columns = $platform->getColumns(
- $this->request->getParam($table)
+ $this->request->getParam($table),
+ $this->request->getParam("input")
);
return $columns;