Make WordPress Core

Changeset 11084


Ignore:
Timestamp:
04/24/2009 11:50:37 PM (15 years ago)
Author:
ryan
Message:

Fix php4 constructors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-upgrader.php

    r11080 r11084  
    2222
    2323    function WP_Upgrader($skin = null) {
    24         return __construct($skin);
     24        return $this->__construct($skin);
    2525    }
    2626    function __construct($skin = null) {
     
    683683
    684684    function WP_Upgrader_Skin($args = array()) {
    685         return __construct($args);
     685        return $this->__construct($args);
    686686    }
    687687    function __construct($args = array()) {
     
    756756
    757757    function Plugin_Upgrader_Skin($args = array()) {
    758         return __construct($args);
     758        return $this->__construct($args);
    759759    }
    760760
     
    797797
    798798    function Plugin_Installer_Skin($args = array()) {
    799         return __construct($args);
     799        return $this->__construct($args);
    800800    }
    801801
     
    843843
    844844    function Theme_Installer_Skin($args = array()) {
    845         return __construct($args);
     845        return $this->__construct($args);
    846846    }
    847847
     
    898898
    899899    function Theme_Upgrader_Skin($args = array()) {
    900         return __construct($args);
     900        return $this->__construct($args);
    901901    }
    902902
     
    944944
    945945    function File_Upload_Upgrader($form, $urlholder) {
    946         return __construct($form, $urlholder);
     946        return $this->__construct($form, $urlholder);
    947947    }
    948948    function __construct($form, $urlholder) {
Note: See TracChangeset for help on using the changeset viewer.