Changeset 11588 for sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php
- Timestamp:
- 02/21/2022 08:18:07 AM (3 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
r11511 r11588 53 53 * @var string 54 54 */ 55 p rotected$tmp_dir = '';55 public $tmp_dir = ''; 56 56 57 57 /** … … 60 60 * @var string 61 61 */ 62 p rotected$tmp_svn_dir = '';62 public $tmp_svn_dir = ''; 63 63 64 64 /** … … 67 67 * @var string 68 68 */ 69 p rotected$theme_dir = '';69 public $theme_dir = ''; 70 70 71 71 /** … … 74 74 * @var WP_Theme 75 75 */ 76 p rotected$theme;76 public $theme; 77 77 78 78 /** … … 81 81 * @var string 82 82 */ 83 p rotected$theme_slug = '';83 public $theme_slug = ''; 84 84 85 85 /** … … 88 88 * @var WP_Post 89 89 */ 90 p rotected$theme_post;90 public $theme_post; 91 91 92 92 /** … … 95 95 * @var WP_User 96 96 */ 97 p rotected$author;97 public $author; 98 98 99 99 /** … … 102 102 * @var array 103 103 */ 104 p rotected$readme = array();104 public $readme = array(); 105 105 106 106 /** … … 109 109 * @var object 110 110 */ 111 p rotected$trac_ticket;111 public $trac_ticket; 112 112 113 113 /** … … 116 116 * @var int 117 117 */ 118 p rotected$trac_changeset = 0;118 public $trac_changeset = 0; 119 119 120 120 /** … … 123 123 * @var Trac 124 124 */ 125 p rotected$trac;125 public $trac; 126 126 127 127 /** … … 144 144 * @var string 145 145 */ 146 p rotected$commit_msg = '';146 public $commit_msg = ''; 147 147 148 148 /** … … 1761 1761 // When importing from SVN, include a 'Compare' link as the Changeset likely won't show a Diff unless the author did a `svn cp`. 1762 1762 'svn' === $this->importing_from && ! empty( $this->theme_post->max_version ) ? 1763 "<https://themes.trac.wordpress.org/changeset?old_path={$this->theme_slug}/{$this->theme_post-> max_version}&new_path={$this->theme_slug}/{$this->theme->display( 'Version' )}|Compare>" :1763 "<https://themes.trac.wordpress.org/changeset?old_path={$this->theme_slug}/{$this->theme_post->_last_live_version}&new_path={$this->theme_slug}/{$this->theme->display( 'Version' )}|Compare>" : 1764 1764 '' 1765 1765 ),
Note: See TracChangeset
for help on using the changeset viewer.