Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zend Framework 1.10.7 maintenance update #1539

Closed
robocoder opened this issue Jul 31, 2010 · 1 comment
Closed

Zend Framework 1.10.7 maintenance update #1539

robocoder opened this issue Jul 31, 2010 · 1 comment
Labels
Bug For errors / faults / flaws / inconsistencies etc.
Milestone

Comments

@robocoder
Copy link
Contributor

Update to 1.10.7 maintenance release.

As before, I applied the lazy loading change from http://www.zendframework.com/manual/en/performance.classloading.html:

find . -name '*.php' -not -wholename '*/Loader/Autoloader.php' \
  -not -wholename '*/Application.php' -print0 | \
  xargs -0 sed --regexp-extended --in-place 's/(require_once)/\/\/ \1/g'

We won't update these files because ZF-8158 introduced a compat buster:

  • Zend/Http/Client.php
  • Zend/Uri.php

In Zend/Validate/Hostname.php, we changed this so that it doesn't depend on the include path:

547c547
<                             $regexChars += include($this->_validIdns[strtoupper($this->_tld)]);

---
>                             $regexChars += include(dirname(__FILE__) . '/../../' . $this->_validIdns[strtoupper($this->_tld)]);
@robocoder
Copy link
Contributor Author

(In [2833]) fixes #1539 - on second thought, I'll copy Uri.php and Http/Client.php, and comment out the offending code

@robocoder robocoder added this to the Piwik 0.9 - Surviving The Wild milestone Jul 8, 2014
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug For errors / faults / flaws / inconsistencies etc.
Projects
None yet
Development

No branches or pull requests

1 participant