Changeset 6195 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-api-update-updater.php
- Timestamp:
- 12/01/2017 01:48:33 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-api-update-updater.php
r5841 r6195 68 68 'version' => get_post_meta( $post->ID, 'version', true ), 69 69 'stable_tag' => get_post_meta( $post->ID, 'stable_tag', true ), 70 'plugin_name' => get_post_meta( $post->ID, 'header_name', true ), 71 'plugin_name_san' => sanitize_title_with_dashes( get_post_meta( $post->ID, 'header_name', true ) ), 70 'plugin_name' => strip_tags( get_post_meta( $post->ID, 'header_name', true ) ), 71 'plugin_name_san' => sanitize_title_with_dashes( strip_tags( get_post_meta( $post->ID, 'header_name', true ) ) ), 72 'plugin_author' => strip_tags( get_post_meta( $post->ID, 'header_author', true ) ), 72 73 'tested' => get_post_meta( $post->ID, 'tested', true ), 73 74 'requires' => get_post_meta( $post->ID, 'requires', true ), … … 122 123 `plugin_name` varchar(255) NOT NULL DEFAULT '', 123 124 `plugin_name_san` varchar(255) NOT NULL DEFAULT '', 125 `plugin_author` varchar(255) NOT NULL DEFAULT '', 124 126 `tested` varchar(128) NOT NULL DEFAULT '', 125 127 `requires` varchar(128) NOT NULL DEFAULT '',
Note: See TracChangeset
for help on using the changeset viewer.