From 90da3573e625586d5a6c433e74b71f427eced0f0 Mon Sep 17 00:00:00 2001 From: Michael Riedmann Date: Mon, 6 May 2019 00:11:23 +0200 Subject: [PATCH] corrected typo in installer CLI auto function --- .../humhub/modules/installer/commands/InstallController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protected/humhub/modules/installer/commands/InstallController.php b/protected/humhub/modules/installer/commands/InstallController.php index 3dc8f8f600..c6bcca630f 100644 --- a/protected/humhub/modules/installer/commands/InstallController.php +++ b/protected/humhub/modules/installer/commands/InstallController.php @@ -37,8 +37,8 @@ class InstallController extends Controller */ public function actionAuto() { - actionWriteSiteConfig(); - actionCreateAdminAccount(); + $this->actionWriteSiteConfig(); + $this->actionCreateAdminAccount(); return ExitCode::OK; }