Plugin Directory

Changeset 1286503


Ignore:
Timestamp:
11/15/2015 08:07:42 AM (10 years ago)
Author:
d363f86b
Message:

Fixed string literals

Location:
bulk-photo-to-product-importer-extension-for-woocommerce/trunk
Files:
9 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • bulk-photo-to-product-importer-extension-for-woocommerce/trunk/bptpi.php

    r1268048 r1286503  
    66Author: The Portland Company, Designed by Spencer Hill, Coded by Redeye Adaya
    77Author URI: http://www.theportlandcompany.com
    8 Version: 2.4.6
     8Version: 2.4.7
    99Copyright: 2015 The Portland Company
    1010License: GPL v3
     
    2424     * @var string
    2525     */
    26     public $version = '2.4.6';
     26    public $version = '2.4.7';
    2727
    2828    /**
  • bulk-photo-to-product-importer-extension-for-woocommerce/trunk/classes/ajax.php

    r1268048 r1286503  
    510510        echo json_encode(array(
    511511            'success' => true,
    512             'html' => ptp_dropdown_categories(array('name' => 'term_id', 'show_option_none' => 'Select a category' . $bptpi_category_naming_scheme, 'walker' => new Walker_Without_Children()))
     512            'html' => ptp_dropdown_categories(array('name' => 'term_id', 'show_option_none' => 'Select a ' . $bptpi_category_naming_scheme, 'walker' => new Walker_Without_Children()))
    513513        ));
    514514
  • bulk-photo-to-product-importer-extension-for-woocommerce/trunk/index.php

    r1245657 r1286503  
    5050               
    5151                <div class="form-field category">
    52                     <span><?php echo ptp_dropdown_categories( array( 'name' => 'term_id', 'show_option_none' => 'Select a category' . $bptpi_category_naming_scheme, 'walker' => new Walker_Without_Children() ) ); ?></span>
     52                    <span><?php echo ptp_dropdown_categories( array( 'name' => 'term_id', 'show_option_none' => 'Select a ' . $bptpi_category_naming_scheme, 'walker' => new Walker_Without_Children() ) ); ?></span>
    5353                    <span class="add-category  dashicons dashicons-plus-alt"></span>
    5454                    <div class="quick-add-category-con"></div>
Note: See TracChangeset for help on using the changeset viewer.