From 3eb514345368b2fa3f1073365b8b334244c4339a Mon Sep 17 00:00:00 2001 From: tonis Date: Tue, 30 May 2023 14:13:25 +0300 Subject: [PATCH] fixed app typo --- application/libraries/PluginManager/LimesurveyApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/libraries/PluginManager/LimesurveyApi.php b/application/libraries/PluginManager/LimesurveyApi.php index c32fbae5b7f..f179caeb385 100644 --- a/application/libraries/PluginManager/LimesurveyApi.php +++ b/application/libraries/PluginManager/LimesurveyApi.php @@ -58,7 +58,7 @@ public function setFlash($message, $key = 'api') public function createTable($plugin, $sTableName, $aColumns, $sOptions = null) { if (null !== $sTableName = $this->getTableName($plugin, $sTableName)) { - return Ap()->getDb()->createCommand()->createTable($sTableName, $aColumns, $sOptions); + return App()->getDb()->createCommand()->createTable($sTableName, $aColumns, $sOptions); } return false; }