From 7f075c3b2ce6063acffea3184f0371eadcb052c2 Mon Sep 17 00:00:00 2001 From: fleurami <38048487+fleurami@users.noreply.github.com> Date: Thu, 29 Apr 2021 16:24:40 +0200 Subject: [PATCH] Add files via upload Update everything without asking --- OxidAskYes.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 OxidAskYes.patch diff --git a/OxidAskYes.patch b/OxidAskYes.patch new file mode 100644 index 0000000..087b7df --- /dev/null +++ b/OxidAskYes.patch @@ -0,0 +1,13 @@ +--- src/Installer/Package/AbstractPackageInstaller_Original.php 2021-04-12 16:59:26.000000000 +0200 ++++ src/Installer/Package/AbstractPackageInstaller.php 2021-04-29 16:16:31.000000000 +0200 +@@ -198,9 +198,7 @@ + */ + protected function askQuestion($messageToAsk) + { +- $userInput = $this->getIO()->ask($messageToAsk, 'N'); +- +- return $this->isPositiveUserInput($userInput); ++ return true; + } + + /**