Changeset 1857
- Timestamp:
- 09/01/2015 06:19:21 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php
r1809 r1857 33 33 * @var string 34 34 */ 35 pr ivate$tmp_dir;35 protected $tmp_dir; 36 36 37 37 /** … … 40 40 * @var string 41 41 */ 42 pr ivate$theme_dir;42 protected $theme_dir; 43 43 44 44 /** … … 47 47 * @var WP_Theme 48 48 */ 49 pr ivate$theme;49 protected $theme; 50 50 51 51 /** … … 54 54 * @var WP_Post 55 55 */ 56 pr ivate$theme_post;56 protected $theme_post; 57 57 58 58 /** … … 61 61 * @var WP_User 62 62 */ 63 pr ivate$author;63 protected $author; 64 64 65 65 /** … … 68 68 * @var object 69 69 */ 70 pr ivate$trac_ticket;70 protected $trac_ticket; 71 71 72 72 /** … … 75 75 * @var Trac 76 76 */ 77 pr ivate$trac;77 protected $trac; 78 78 79 79 /** … … 710 710 * @return string The converted string. 711 711 */ 712 pr ivatefunction strip_non_utf8( $string ) {712 protected function strip_non_utf8( $string ) { 713 713 ini_set( 'mbstring.substitute_character', 'none' ); 714 714 … … 723 723 * @return int 724 724 */ 725 pr ivatefunction sort_by_string_length( $a, $b ) {725 protected function sort_by_string_length( $a, $b ) { 726 726 return strlen( $b ) - strlen( $a ); 727 727 }
Note: See TracChangeset
for help on using the changeset viewer.