Plugin Directory

Changeset 3319543


Ignore:
Timestamp:
06/29/2025 07:26:33 PM (9 months ago)
Author:
pattihis
Message:

Version 2.0.3

Location:
add-custom-fields-to-media
Files:
26 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • add-custom-fields-to-media/trunk/add-custom-fields-to-media.php

    r3199991 r3319543  
    1111 * Plugin URI:        https://wordpress.org/plugins/add-custom-fields-to-media/
    1212 * Description:       Allows users to add custom fields to the media uploader and access those fields in template files. Great for adding copyrights, image meta etc.
    13  * Version:           2.0.2
     13 * Version:           2.0.3
    1414 * Author:            George Pattichis
    1515 * Author URI:        https://profiles.wordpress.org/pattihis//
     
    3030 * @since 2.0.0
    3131 */
    32 define( 'ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION', '2.0.2' );
     32define( 'ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION', '2.0.3' );
    3333
    3434/**
  • add-custom-fields-to-media/trunk/admin/index.php

    r3019065 r3319543  
    1 <?php // Silence is golden
     1<?php
     2/**
     3 * Silence is golden.
     4 *
     5 * @package Add_Custom_Fields_To_Media
     6 */
  • add-custom-fields-to-media/trunk/includes/class-add-custom-fields-to-media.php

    r3199991 r3319543  
    6565            $this->version = ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION;
    6666        } else {
    67             $this->version = '2.0.2';
     67            $this->version = '2.0.3';
    6868        }
    6969        $this->plugin_name = 'add-custom-fields-to-media';
     
    9696         * core plugin.
    9797         */
    98         require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-add-custom-fields-to-media-loader.php';
     98        require_once plugin_dir_path( __DIR__ ) . 'includes/class-add-custom-fields-to-media-loader.php';
    9999
    100100        /**
     
    102102         * of the plugin.
    103103         */
    104         require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-add-custom-fields-to-media-i18n.php';
     104        require_once plugin_dir_path( __DIR__ ) . 'includes/class-add-custom-fields-to-media-i18n.php';
    105105
    106106        /**
    107107         * The class responsible for defining all actions that occur in the admin area.
    108108         */
    109         require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-add-custom-fields-to-media-admin.php';
     109        require_once plugin_dir_path( __DIR__ ) . 'admin/class-add-custom-fields-to-media-admin.php';
    110110
    111111        /**
     
    113113         * side of the site.
    114114         */
    115         require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-add-custom-fields-to-media-public.php';
     115        require_once plugin_dir_path( __DIR__ ) . 'public/class-add-custom-fields-to-media-public.php';
    116116
    117117        $this->loader = new Add_Custom_Fields_To_Media_Loader();
  • add-custom-fields-to-media/trunk/includes/index.php

    r3019065 r3319543  
    1 <?php // Silence is golden
     1<?php
     2/**
     3 * Silence is golden.
     4 *
     5 * @package Add_Custom_Fields_To_Media
     6 */
  • add-custom-fields-to-media/trunk/public/index.php

    r3019065 r3319543  
    1 <?php // Silence is golden
     1<?php
     2/**
     3 * Silence is golden.
     4 *
     5 * @package Add_Custom_Fields_To_Media
     6 */
  • add-custom-fields-to-media/trunk/readme.txt

    r3199991 r3319543  
    55Donate link: https://profiles.wordpress.org/pattihis/
    66Requires at least: 5.2
    7 Tested up to: 6.7.1
     7Tested up to: 6.8
    88Requires PHP: 7.2
    9 Stable tag: 2.0.2
     9Stable tag: 2.0.3
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464== Changelog ==
    6565
     66= 2.0.3 =
     67* Full compliance with WordPress Coding Standards (PHPCS)
     68* Improved file docblocks and inline comments for standards
     69* Enhanced security and sanitization review
     70* Compatibility with WordPress v6.8
     71
    6672= 2.0.2 =
    6773* Compatibility with WordPress v6.7
Note: See TracChangeset for help on using the changeset viewer.