pgorod
pgorod
Emulating this feature in bash: ```bash ./bin/htmltest | tee >(grep -v 'errors in\|failed in\|htmltest started\|======' | cut -d '-' -f 1 | sort | uniq -c -w 10) ```
I really miss this feature...! Would this code help? https://stackoverflow.com/a/34960550/1189711 I don't know enough of Go (yet) to handle this myself...
Nice catch. This bug has been there since the initial commit of old SugarCRM code... 😅 I wonder if this explains some of the recent (frequent) complaints about failing search...
This generic fix is interesting! I hope it's not too bad for performance, those regexps? Still, there's probably an underlying specific bug here, one of the scripts being echoed isn't...
Perhaps related to this change? #9409 Can you please try undoing that change and see if it fixes your bug?
There seems to be some additional logic for this in `include/SugarObjects/templates/company/Company.php` and `include/SugarObjects/templates/person/Person.php` I wonder if it makes a difference if you're changing to an email that already exists in...
It would be nice if you could get a stack trace of that FATAL error. This is being called from somewhere as a static method, it would help to know...
Judging by the way the rest of the function uses to call the class methods, **`$this->validateFields`** probably needs to be changed to **`self::$helperObject->validateFields`**, but I didn't fully examine this, and...
Yes. Thanks. If you get a chance please test the change I proposed above...
In this documentation page https://www.php.net/manual/en/function.get-current-user.php There is a comment saying: > On Linux this function is indeed returning the owner of the script. If you want to know the username...