Changeset 651258
- Timestamp:
- 01/11/2013 11:23:23 AM (13 years ago)
- Location:
- image-metadata-cruncher/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
image-metadata-cruncher.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-metadata-cruncher/trunk/README.txt
r631347 r651258 4 4 Tags: image, metadata, EXIF, IPTC, lightroom, photoshop, photomechanic, photostation, meta 5 5 Requires at least: 2.7 6 Tested up to: 3. 47 Stable tag: 1. 26 Tested up to: 3.5 7 Stable tag: 1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 = 1.3 = 41 * Fixed broken links to plugin settings in the plugins page. 42 40 43 = 1.2 = 41 44 * Fixed a bug when the plugin extracted only the first item of an IPTC metadata of type array like IPTC:Keywords and IPTC:SupplementalCategories -
image-metadata-cruncher/trunk/image-metadata-cruncher.php
r631359 r651258 3 3 Plugin Name: Image Metadata Cruncher 4 4 Description: Gives you ultimate controll over which image metadata (EXIF or IPTC) WordPress extracts from an uploaded image and where and in what form it then goes. You can even specify unlimited custom post meta tags as the target of the extracted image metadata. 5 Version: 1. 25 Version: 1.3 6 6 Author: Peter Hudec 7 7 Author URI: http://peterhudec.com … … 22 22 private $pattern; 23 23 public $plugin_name = 'Image Metadata Cruncher'; 24 private $version = 1. 2;24 private $version = 1.3; 25 25 private $after_update = FALSE; 26 private $settings_slug = 'image_metadata_cruncher-options'; 26 27 27 28 /** … … 570 571 571 572 if ( $file == $this_plugin ) { 572 $url = get_bloginfo( 'wpurl' ) . "/wp-admin/admin.php?page= $this->settings_slug";573 $url = get_bloginfo( 'wpurl' ) . "/wp-admin/admin.php?page={$this->settings_slug}"; 573 574 $settings_link = "<a href=\"$url\">Settings</a>"; 574 575 array_unshift( $links, $settings_link ); … … 585 586 public function plugin_row_meta( $links, $file ) { 586 587 if ( $file == plugin_basename( __FILE__ ) ) { 587 $url = get_bloginfo( 'wpurl' ) . "/wp-admin/admin.php?page= $this->settings_slug";588 $url = get_bloginfo( 'wpurl' ) . "/wp-admin/admin.php?page={$this->settings_slug}"; 588 589 $links[] = "<a href=\"$url\">Settings</a>"; 589 590 $links[] = "<a href=\"$this->donate_url\">Donate</a>";
Note: See TracChangeset
for help on using the changeset viewer.