Changeset 31125
- Timestamp:
- 01/10/2015 06:12:25 AM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-background.php
r31116 r31125 54 54 * @param callback $admin_header_callback 55 55 * @param callback $admin_image_div_callback Optional custom image div output callback. 56 * @return Custom_Background57 56 */ 58 57 public function __construct($admin_header_callback = '', $admin_image_div_callback = '') { -
trunk/src/wp-admin/custom-header.php
r31116 r31125 72 72 * @param callback $admin_header_callback 73 73 * @param callback $admin_image_div_callback Optional custom image div output callback. 74 * @return Custom_Image_Header75 74 */ 76 75 public function __construct($admin_header_callback, $admin_image_div_callback = '') { -
trunk/src/wp-admin/includes/class-wp-filesystem-ftpext.php
r30978 r31125 27 27 if ( ! extension_loaded('ftp') ) { 28 28 $this->errors->add('no_ftp_ext', __('The ftp PHP extension is not available')); 29 return false;29 return; 30 30 } 31 31 -
trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r30978 r31125 49 49 if ( ! extension_loaded('ssh2') ) { 50 50 $this->errors->add('no_ssh2_ext', __('The ssh2 PHP extension is not available')); 51 return false;51 return; 52 52 } 53 53 if ( !function_exists('stream_get_contents') ) { 54 54 $this->errors->add('ssh2_php_requirement', __('The ssh2 PHP extension is available, however, we require the PHP5 function <code>stream_get_contents()</code>')); 55 return false;55 return; 56 56 } 57 57 -
trunk/src/wp-admin/includes/class-wp-importer.php
r31090 r31125 7 7 * Class Constructor 8 8 * 9 * @return void10 9 */ 11 10 public function __construct() {}
Note: See TracChangeset
for help on using the changeset viewer.