Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 04 Aug 2023 15:08:10 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 272938] php81-pear-htmlpurifier-4.9.2_1
Message-ID:  <bug-272938-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D272938

            Bug ID: 272938
           Summary: php81-pear-htmlpurifier-4.9.2_1
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs@FreeBSD.org
          Reporter: joel@tahoestores.com

Generates a PHP fatal error: autoload() is no longer supported, use
spl_autoload_register()

Code:

    function __autoload($class)
    {
        return HTMLPurifier_Bootstrap::autoload($class);
    }

Suggested fix:

    function spl_autoload_register($class)
    {
        return HTMLPurifier_Bootstrap::autoload($class);
    }

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-272938-7788>