Skip to content

Commit

Permalink
Re-apply
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Mar 3, 2014
1 parent 3a88697 commit 996d537
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion framework/Dav/package.xml
Expand Up @@ -21,7 +21,7 @@
</stability>
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
<notes>
* [jan] Update to SabreDAV 1.8.8.
* [jan] Update to SabreDAV 1.8.9.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down
4 changes: 2 additions & 2 deletions framework/Dav/vendor/sabre/dav/lib/Sabre/DAV/URLUtil.php
Expand Up @@ -33,7 +33,7 @@ class URLUtil {
*/
static function encodePath($path) {

return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\)\/:])/',function($match) {
return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\)\/:@])/',function($match) {

return '%'.sprintf('%02x',ord($match[0]));

Expand All @@ -51,7 +51,7 @@ static function encodePath($path) {
*/
static function encodePathSegment($pathSegment) {

return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\):])/',function($match) {
return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\):@])/',function($match) {

return '%'.sprintf('%02x',ord($match[0]));

Expand Down

0 comments on commit 996d537

Please sign in to comment.