Jaime Baez
Jaime Baez
I would consider rendering HTML unsafe unless it has been sanitized before, either in the server or the client. I have implemented a "client sanitizer helper" long time ago, although...
Sanitizer libraries provide configuration for what things are allowed in the HTML. I think mainly what it shouldn't be allowed is JavaScript, either in `` tags or in a tag...
I think albums #147 could be an alternative to replicating the folder structure in the server. That way from the client app, the photos can be organized in albums. Also,...
> > I think albums #147 could be an alternative to replicating the folder structure in the server. That way from the client app, the photos can be organized in...
This is a very good idea, I recently updated Material and saw that dialogs are available, and started migrating UIAlert to Material Dialog. In the DialogTextFieldView I added the method...
For what I understand from the code the `pcntl_signal_dispatch` is used in ApnsPHP_Push::send method because is necessary when it is used by the ApnsPHP_Push_Server subclass. Checking if the function exists...
Yes, we have a script that uses `pcntl_fork` to create child processes which run beanstalk jobs among other things. The `pcntl_signal_dispatch` was causing child processes to be killed.
@lethalman the worker CLI script is running as a "daemon" doing a `pcntl_signal_dispatch` in a loop. It looks that the `pcntl_signal_dispatch` in the child it's causing a SIGCHLD to be...
@lethalman Well I debugged it, the problem was in the child job that involved sending APNS messages which uses this library, and `pcntl_signal_dispatch` was causing the problem. The bug doesn't...
@lethalman It is ok with me you don't want to accept the patch, but in my opinion there is no need to use `pcntl_signal_dispatch` in this class. I don't think...