• 0.9.2.2 released#

  • rthrash Reply #1, 5 years, 3 months ago

    Reply
    0.9.2.2 is an important release which contains some measures to prevent possible XSS exploits that have been back-ported from the pending 095 release. This should be considered a mandatory and immediate upgrade. Existing installs can use the patch distribution if you're running 0.9.2.1. Earlier installs should use the full upgrade as outlined on the download page.

    Download 0.9.2.2


  • opengeek Reply #2, 5 years, 3 months ago

    Reply
    IMPORTANT NOTE

    If you are using Wayfinder with MODx 0.9.2.1 and you are upgrading or patching to 0.9.2.2, Wayfinder 1.0 WILL BREAK YOUR SITE following the upgrade! You can fix this until a new release of Wayfinder is available that addresses the problem by replacing line 77 of the Wayfinder 1.0 snippet:
            if (substr($this->modxVersion['code_name'],-4) >= 1392) {

    with these two lines:
            $revision= substr($this->modxVersion['code_name'],-4);
            if ($revision >= 1392 && $revision != 1923) {

    If you make this change to Wayfinder before upgrading or applying the patch, everything should go smoothly.