Changeset 1357189
- Timestamp:
- 02/24/2016 10:22:46 AM (10 years ago)
- Location:
- techxplorers-plugin-listicle/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
admin/class-txp-plugin-listicle-admin.php (modified) (1 diff)
-
txp-plugin-listicle.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
techxplorers-plugin-listicle/trunk/README.txt
r1357070 r1357189 75 75 == Changelog == 76 76 77 = 2.1.1 = 78 79 * Improve determination of plugin slugs for icon retrieval 80 * A full list of fixes is [available here](https://github.com/techxplorer/txp-plugin-listicle/issues?q=is%3Aissue+milestone%3A2.1.1+) 81 77 82 = 2.1.0 = 78 83 -
techxplorers-plugin-listicle/trunk/admin/class-txp-plugin-listicle-admin.php
r1357067 r1357189 192 192 // Use the plugin title to derive a 'slug'. 193 193 $plugin = $all_plugins [ $idx ]; 194 $plugin['Txp_slug'] = sanitize_title( $plugin['Title'] ); 194 195 // Determine the plugin slug. 196 $slug = dirname( $idx ); 197 if ( '.' !== $slug ) { 198 // Use the directory name as the slug. 199 $plugin['Txp_slug'] = $slug; 200 } else { 201 // Otherwise use the sanitized title. 202 $plugin['Txp_slug'] = sanitize_title( $plugin['Title'] ); 203 } 195 204 196 205 $plugins[ $idx ] = $plugin; -
techxplorers-plugin-listicle/trunk/txp-plugin-listicle.php
r1357067 r1357189 16 16 * Plugin URI: https://techxplorer.com/projects/txp-plugin-listicle 17 17 * Description: Using a shortcode this plugin makes it easy to credit the authors of plugins used on your site. 18 * Version: 2.1. 018 * Version: 2.1.1 19 19 * Author: techxplorer 20 20 * Author URI: https://techxplorer.com
Note: See TracChangeset
for help on using the changeset viewer.