Changeset 2991 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-posts.php
- Timestamp:
- 04/21/2016 05:57:55 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-posts.php
r2986 r2991 199 199 */ 200 200 public function column_downloads( $post ) { 201 if ( ! empty( $this->plugin_meta->downloaded ) ) { 202 echo number_format_i18n( $this->plugin_meta->downloaded ); 203 } 201 echo number_format_i18n( get_post_meta( $post->ID, 'downloads', true ) ); 204 202 } 205 203
Note: See TracChangeset
for help on using the changeset viewer.