Changeset 14353 for sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-theme-directory/inc/cli/class-set-theme-project.php
- Timestamp:
- 01/09/2025 04:25:05 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-theme-directory/inc/cli/class-set-theme-project.php
r7895 r14353 326 326 $esc_theme_dir = escapeshellarg( $this->temp_dir . $theme_slug ); 327 327 `rm -rf {$esc_theme_dir}`; 328 @unlink( $this->temp_dir . $theme_slug . '.pot' ); 328 329 $pot_file = $this->temp_dir . $theme_slug . '.pot'; 330 if ( file_exists( $pot_file ) ) { 331 unlink( $pot_file ); 332 } 329 333 } 330 334 }
Note: See TracChangeset
for help on using the changeset viewer.