recordService\throwForbidden does not support Chinese characters?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lj4353
    Senior Member
    • Nov 2023
    • 114

    recordService\throwForbidden does not support Chinese characters?

    recordService\throwForbidden('超过预算')

    错误 403: 拒绝访问
    超过预算​
  • yuri
    Member
    • Mar 2014
    • 8467

    #2
    Workaround:

    Code:
    $o = object\create();
    object\set($o, 'label', '超过预算');
    
    $body = object\create();
    object\set($body, 'messageTranslation', $o);
    
    recordService\throwForbidden('', $body);​

    In the next version it will work w/o workaround.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    Working...