LeoZandvliet
LeoZandvliet
I haven't installed or used this software yet, but it would be needed that you have at least some experience running websites locally on your desktop. [Please read this wiki...
I tested this with the Contracts module, this bug is also present there. And I guess the same would go for invoices? The field 'line_items' is literally added to the...
+1 Same situation for me. Sometimes it's possible to get it from the info object passed to callback functions: ``` eventContent: function(eventInfo){ let $el = $(eventInfo.event._context.calendarApi.el); } ``` But sometimes...
In v5 I used this in the `viewClassNames` callback: When using the NOW indicator line: ``` document.querySelectorAll('.fc-timegrid-now-indicator-line')[0].scrollIntoView(); ``` Else you can also use: ``` let now = new Date(); document.querySelectorAll('.fc-timegrid-slot[data-time^="'...
After some debugging, it looks to me as if `from_html()` should be applied after the beans are fetched from the database, but it's not happening. When I explicitly add this...
Well, that's depending on the chosen architecture. If it is supposed to convert text to htmlentities right after fetching from the db, and looking at SugarBean that calls [$db->fetchByAssoc](https://github.com/salesagility/SuiteCRM/blob/df18433e4bd429ecd754953a6354e38f37893efd/data/SugarBean.php#L1292) that...
I see I've mistakenly created a pull request for the develop branch, will it reach the hotfix branch eventually or should I create a new PR?
I don't use this library, but was searching for some libraries that could handle quite some different scenario's. One of those scenario's would be the same like this issue. When...
@Slamdunk I looked up the RFC responsible for this deprecation: https://wiki.php.net/rfc/unbundle_imap_pspell_oci8 Which also mentions a possible solution: > The library that provides the functionality in this extension, c-client, is no...
@8ctopus Thanks for your reply. So actually, if `php-imap` is installed as required by composer, this issue is actually a non-issue and can be closed?