From ead790853e3010a8c00303744a2e98f39b8619ac Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Mon, 5 Jun 2017 18:34:13 +0300 Subject: [PATCH 1/2] Fix setting of the chat style --- .../libs/classes/Mibew/Controller/Chat/AbstractController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mibew/libs/classes/Mibew/Controller/Chat/AbstractController.php b/src/mibew/libs/classes/Mibew/Controller/Chat/AbstractController.php index 7bdba681..5a579901 100644 --- a/src/mibew/libs/classes/Mibew/Controller/Chat/AbstractController.php +++ b/src/mibew/libs/classes/Mibew/Controller/Chat/AbstractController.php @@ -36,7 +36,7 @@ abstract class AbstractController extends BaseAbstractController protected function getStyle() { if (is_null($this->style)) { - $this->style = $this->prepareStyle(new ChatStyle(ChatStyle::getDefaultStyle())); + $this->style = $this->prepareStyle(new ChatStyle(ChatStyle::getCurrentStyle())); } return $this->style; From 1b436f9535fb2cd653560200194de16177c68c05 Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Thu, 15 Jun 2017 19:28:47 +0300 Subject: [PATCH 2/2] Fix setting of the invitation style --- src/mibew/libs/classes/Mibew/Controller/ButtonCodeController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mibew/libs/classes/Mibew/Controller/ButtonCodeController.php b/src/mibew/libs/classes/Mibew/Controller/ButtonCodeController.php index 165800b6..d5a7f5f0 100644 --- a/src/mibew/libs/classes/Mibew/Controller/ButtonCodeController.php +++ b/src/mibew/libs/classes/Mibew/Controller/ButtonCodeController.php @@ -127,6 +127,7 @@ class ButtonCodeController extends AbstractController // Set generator-specific options $button_generator->setOption('image', $image); + $button_generator->setOption('invitation_style', $invitation_style); } else { // Make sure locale exists if (!$lang || !in_array($lang, $locales_list)) {