Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/09/2016 01:58:10 PM (9 years ago)
Author:
xknown
Message:

Add PHP 5.x style constructors.

Keep also the PHP 4.x style constructors to avoid breaking code that depends on these methods.

See #3033

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1/xmlrpc.php

    r5611 r6153  
    105105     * @return void
    106106     */
    107     function BB_XMLRPC_Server()
     107    function __construct()
    108108    {
    109109        // bbPress publishing API
     
    174174    }
    175175
    176 
     176    function BB_XMLRPC_Server()
     177    {
     178        $this->__construct();
     179    }
    177180
    178181    /**
Note: See TracChangeset for help on using the changeset viewer.