Opened 8 years ago
Closed 8 years ago
#1749 closed enhancement (fixed)
Update accessibility-ready keyword when uploading an update
Reported by: | grapplerulrich | Owned by: | Otto42 |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Theme Review | Keywords: | |
Cc: |
Description
The accessibility-ready
keyword should be automatically be removed from the trac ticket if it is removed from the styles.css.
The change will most likely need to made in WPORG_Themes_Upload::prepare_trac_ticket()`
Change History (4)
#2
@
8 years ago
I think this could be solved with the following code in https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php#L616
<?php $new_ally_tag = ! isset( $this->theme_post->tags_input['accessibility-ready'] ) && isset( $this->trac_ticket->keywords['accessibility-ready'] ); if ( $this->trac_ticket->priority == 'theme update' && ! new_ally_tag ) {
Note: See
TracTickets for help on using
tickets.
Yes, that would be lovely! :)