Panagiotis
Panagiotis
On Latest Docker we get from Symfony: Fatal error: Uncaught RuntimeException: APP_ENV environment variable is not defined. You need to define environment variables for configuration or add "symfony/dotenv" as a...
There many issues on cordova browser platform with inappbrowser wich is implemented via iframe, and loadstart and loaderror events are not being fired. So whe change to loadstop as suggested...
In some cases on low spec pc, the image, when populated from the getter, does not complete loaded when calling the drawImage. ===:clipboard: PR Checklist :clipboard:=== - [x] :pushpin: issue...
### Steps to Reproduce In some cases on low speed engine (jsdom/canvas) and probably on some low end pc's, the image, when populated from the getter, does not complete loaded...
https://github.com/Xtraball/Siberian/blob/03103eb5fcbd2925318dbcc20de5762836879944/siberian/lib/Zend/Service/ShortUrl/TinyUrlCom.php#L42 The above line produce `net::ERR_CLEARTEXT_NOT_PERMITED` error when you try to visit the link. It should be changed to: ```php protected $_baseUri = 'https://tinyurl.com'; ```
Minor, but if you place inline comment after c style comment then parser produces RangeError %lex .... %% /*Comment*/ //Inline comment .... /lex lines = match[0].match(/(?:\r\n?|\n).*/g); ^ RangeError: Maximum call...
Allows to use a custom html template, that is useful if for example you need to use other css framework than bootstrap, or you want the output to be embedded...
There is a missing underscore in line 40 on App.php ``` $download_as = _("Download template as"); ``` Should be ``` $download_as = __("Download template as"); ``` https://github.com/Xtraball/Siberian/blob/35d54146e971e8c284f2a4aa4a3f05e0ebb85657/siberian/app/sae/modules/Application/Form/Customization/Publication/App.php#L40