Changes between Version 1 and Version 2 of Ticket #57183, comment 2
- Timestamp:
- 11/23/2022 11:57:48 AM (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57183, comment 2
v1 v2 7 7 8 8 I was looking at the code again, do you decrease the number of updates even if you delete a theme that doesn't need to be updated? I'm wrong? 9 10 If you look a little above you can take a hint from here: 11 12 13 {{{ 14 // Remove theme from update count. 15 if ( -1 !== _.indexOf( themes.upgrade, response.slug ) ) { 16 themes.upgrade = _.without( themes.upgrade, response.slug ); 17 wp.updates.decrementCount( 'theme' ); 18 } 19 }}}