Ticket #3665: 3665.diff
| File 3665.diff, 2.2 KB (added by , 8 years ago) |
|---|
-
trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/css/edit-form.css
226 226 color: #666; 227 227 } 228 228 229 .profile-plugins a.profile-plugin-open-unused { 230 color: #826EB4; 231 } 232 229 233 a.profile-plugin-open { 230 234 color: green; 231 235 } -
trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php
257 257 if ( 'approved' === $plugin->post_status ) { 258 258 $note = true; 259 259 $tooltips[] = __( 'Plugin is approved, but has no data.', 'wporg-plugins' ); 260 $classes[] = 'profile-plugin-open-unused'; 260 261 } elseif ( strtotime( '-2 years' ) > strtotime( $last_updated ) ) { 261 262 $tooltips[] = __( 'Plugin is open but has not been updated in more than two years.', 'wporg-plugins' ); 262 263 $classes[] = 'profile-plugin-open-old'; … … 290 291 sprintf( 291 292 '<a href="//make.wordpress.org/pluginrepo/?s=%s" title="%s">P2</a>', 292 293 urlencode( esc_attr( $plugin_slug ) ), 293 esc_attr__( 'Click to search Plugin repoP2 for mentions of this plugin', 'wporg-plugins' )294 esc_attr__( 'Click to search Plugin Team P2 for mentions of this plugin', 'wporg-plugins' ) 294 295 ), 295 296 sprintf( 296 297 '<a href="https://supportpress.wordpress.org/plugins/?q=%s&status=&todo=Search+%%C2%%BB" title="%s">SP</a>', 297 298 urlencode( esc_attr( $plugin_slug ) ), 298 esc_attr__( 'Click to search Plugin repoSupportPress for mentions of this plugin', 'wporg-plugins' )299 esc_attr__( 'Click to search Plugin SupportPress for mentions of this plugin', 'wporg-plugins' ) 299 300 ), 300 301 ); 301 302 vprintf( '<span class="profile-sp-link">[ %s | %s | %s ]</span>', $plugin_links );