Changeset 11084
- Timestamp:
- 04/24/2009 11:50:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r11080 r11084 22 22 23 23 function WP_Upgrader($skin = null) { 24 return __construct($skin);24 return $this->__construct($skin); 25 25 } 26 26 function __construct($skin = null) { … … 683 683 684 684 function WP_Upgrader_Skin($args = array()) { 685 return __construct($args);685 return $this->__construct($args); 686 686 } 687 687 function __construct($args = array()) { … … 756 756 757 757 function Plugin_Upgrader_Skin($args = array()) { 758 return __construct($args);758 return $this->__construct($args); 759 759 } 760 760 … … 797 797 798 798 function Plugin_Installer_Skin($args = array()) { 799 return __construct($args);799 return $this->__construct($args); 800 800 } 801 801 … … 843 843 844 844 function Theme_Installer_Skin($args = array()) { 845 return __construct($args);845 return $this->__construct($args); 846 846 } 847 847 … … 898 898 899 899 function Theme_Upgrader_Skin($args = array()) { 900 return __construct($args);900 return $this->__construct($args); 901 901 } 902 902 … … 944 944 945 945 function File_Upload_Upgrader($form, $urlholder) { 946 return __construct($form, $urlholder);946 return $this->__construct($form, $urlholder); 947 947 } 948 948 function __construct($form, $urlholder) {
Note: See TracChangeset
for help on using the changeset viewer.