Plugin Directory

Changeset 651258


Ignore:
Timestamp:
01/11/2013 11:23:23 AM (13 years ago)
Author:
PeterHudec
Message:

Updated to version 1.3

Location:
image-metadata-cruncher/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • image-metadata-cruncher/trunk/README.txt

    r631347 r651258  
    44Tags: image, metadata, EXIF, IPTC, lightroom, photoshop, photomechanic, photostation, meta
    55Requires at least: 2.7
    6 Tested up to: 3.4
    7 Stable tag: 1.2
     6Tested up to: 3.5
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838== Changelog ==
    3939
     40= 1.3 =
     41* Fixed broken links to plugin settings in the plugins page.
     42
    4043= 1.2 =
    4144* 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  
    33Plugin Name: Image Metadata Cruncher
    44Description: 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.2
     5Version: 1.3
    66Author: Peter Hudec
    77Author URI: http://peterhudec.com
     
    2222    private $pattern;
    2323    public $plugin_name = 'Image Metadata Cruncher';
    24     private $version = 1.2;
     24    private $version = 1.3;
    2525    private $after_update = FALSE;
     26    private $settings_slug = 'image_metadata_cruncher-options';
    2627   
    2728    /**
     
    570571       
    571572        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}";
    573574            $settings_link = "<a href=\"$url\">Settings</a>";
    574575            array_unshift( $links, $settings_link );
     
    585586    public function plugin_row_meta( $links, $file ) {
    586587        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}";
    588589            $links[] = "<a href=\"$url\">Settings</a>";
    589590            $links[] = "<a href=\"$this->donate_url\">Donate</a>";
Note: See TracChangeset for help on using the changeset viewer.