Jim O'Halloran

Results 14 comments of Jim O'Halloran

Oro have confirmed (https://orocommunity.slack.com/archives/C11N3EXRS/p1620750786093800?thread_ts=1620715495.088600&cid=C11N3EXRS) that this is a bug, the internal ticket ID is BB-20605.

Related slack thread here: https://orocommunity.slack.com/archives/C11NBUUGY/p1615507777060700

Thanks for confirming the issue. I will look for a fix in a future Platform release.

Workaround for anyone else with this issue until Oro is able to release a fix... I put together this class which wraps the 8Points class and Base64 encodes a hash...

Hi @x86demon , Thanks for that info. It seemed odd that most of the functions from that package were registered, but not `ROUND()`. If this is expected, I assume there...

Just to be 100% clear here, `log_bin_trust_function_creators` isn't a privilege required to run triggers as you suggest. It's a feature designed to prevent developers from running non-deterministic functions that could...

Note, the kind of change I'm suggesting could take the form of setting a background colour on ads (like Google themselves did in the old days), or adding a clear,...

SendGrid with the `sendgrid+api://` scheme has the same issue as well. A temporary MessageID is returned that does not look like an email address, therefore the exception is raised even...

Two test cases I've run through the UI so far. Start both by creating an entity with Alpha selected, and set a breakpoint in `CountValidator`. 1. Edit the entity, un-check...

Ok, the unit test was much simpler than I expected... ``` public function testRemoveMultiEnum() { $demo = new Demo(); $demo->addLetter($this->a); $this->assertCount(1, $demo->getLetters()); $demo->removeLetter($this->a); $demo->addLetter($this->b); $demo->addLetter($this->c); $this->assertCount(2, $demo->getLetters()); } ``` The...