mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-15 16:44:11 +03:00
Merge pull request #100 from Mibew/invitations_fix
Prevent use of undefined values on display of chat invitation
This commit is contained in:
commit
52107afc1a
@ -105,9 +105,9 @@ abstract class AbstractController extends BaseAbstractController
|
||||
'mibewBasePath' => $request->getBasePath(),
|
||||
'mibewBaseUrl' => $request->getBaseUrl(),
|
||||
'stylePath' => $request->getBasePath() . '/' . $this->getStyle()->getFilesPath(),
|
||||
'company' => $options['company'],
|
||||
'mibewHost' => $options['mibewHost'],
|
||||
'title' => $options['page.title'],
|
||||
'company' => isset($options['company']) ? $options['company'] : '',
|
||||
'mibewHost' => isset($options['mibewHost']) ? $options['mibewHost'] : '',
|
||||
'title' => isset($options['page.title']) ? $options['page.title'] : '',
|
||||
),
|
||||
'startFrom' => $options['startFrom'],
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user