Matthew Weier O'Phinney
Matthew Weier O'Phinney
When I open the app, I consistently receive network timeouts when syncing notes from my server. This means that I am no longer receiving new notes from the server, and...
Hi! One thing I often do on my repositories is create an official release from a given tag. Currently, this requires going to the website, finding the tag, editing it,...
Which requires escaping a large number of characters in attributes? [`[^a-z0-9,\.\-_]`](https://github.com/zendframework/zend-escaper/blob/master/src/Escaper.php#L162) URL's in html looks ugly and are larger than possible ```html ``` --- Originally posted by @autowp at https://github.com/zendframework/zend-escaper/issues/21
This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7681 User: @mkEmperor Created On: 2016-03-03T15:20:23Z...
This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7621 User: @esase Created On: 2015-08-28T16:08:25Z...
This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7550 User: @phpManiac77 Created On: 2015-05-25T13:32:36Z...
OWASP [recommends](https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content) escaping the forward slash character in addition to the other characters normally escaped with PHP's `htmlspecialchars()` method. Any thought to adding that to the `escapeHTML()` method? --- Originally...
- [x] I was not able to find an [open](https://github.com/zendframework/zend-escaper/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-escaper/issues?q=is%3Aclosed) issue matching what I'm seeing. - [x] This is not a question. (Questions should be asked on [chat](https://zendframework.slack.com/)...
I had requested traits back in zendframework/zendframework#4876 which is now closed. It appears this support was added via TraitGenerator. Would be great to see some examples included in the docs....
For example: ``` /** * @param string $name * @return static */ public function setName($name) { $this->name = (string) $name; return $this; } ``` Instead `@return AbstractMemberGenerator` --- Originally posted...