Plugin Directory

Changeset 2035852


Ignore:
Timestamp:
02/21/2019 11:24:55 AM (7 years ago)
Author:
yoannspace
Message:

Deploy version 1.2.3

Location:
rich-meta-in-rdfa
Files:
5 edited
22 copied

Legend:

Unmodified
Added
Removed
  • rich-meta-in-rdfa/tags/1.2.3/CHANGELOG.md

    r2035848 r2035852  
    44The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
    55and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
     6
     7## [1.2.3] - 2019-02-21
     8- Fix bug that adds an empty space before the dc:title
    69
    710## [1.2.2] - 2019-02-21
  • rich-meta-in-rdfa/tags/1.2.3/README.txt

    r2035848 r2035852  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    4848== Changelog ==
    4949
     50= 1.2.3 =
     51* Fix bug that adds an empty space before the dc:title
     52
    5053= 1.2.2 =
    5154* The title of each post is now preceded by a mention (if filled) editable in the settings page
  • rich-meta-in-rdfa/tags/1.2.3/includes/class-rich-meta-in-rdfa.php

    r2035848 r2035852  
    6565            $this->version = RICH_META_IN_RDFA_VERSION;
    6666        } else {
    67             $this->version = '1.2.2';
     67            $this->version = '1.2.3';
    6868        }
    6969        $this->plugin_name = 'rich-meta-in-rdfa';
  • rich-meta-in-rdfa/tags/1.2.3/public/class-rich-meta-in-rdfa-public.php

    r2035848 r2035852  
    107107        $rich_meta_in_rdfa_options = get_option( $this->plugin_name );
    108108        $pre_title = '';
    109         if( in_array( 'intro_text', $rich_meta_in_rdfa_options ) ) {
     109        if( in_array( 'intro_text', $rich_meta_in_rdfa_options ) && $rich_meta_in_rdfa_options['intro_text'] != '' ) {
    110110            $pre_title .= $rich_meta_in_rdfa_options['intro_text'] . ' ';
    111111        }
  • rich-meta-in-rdfa/tags/1.2.3/rich-meta-in-rdfa.php

    r2035848 r2035852  
    1717 * Plugin URI:        https://github.com/dariah-eric/rich-meta-in-rdfa
    1818 * Description:       This plugin allows user to add RDFa into their posts.
    19  * Version:           1.2.2
     19 * Version:           1.2.3
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
  • rich-meta-in-rdfa/trunk/CHANGELOG.md

    r2035848 r2035852  
    44The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
    55and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
     6
     7## [1.2.3] - 2019-02-21
     8- Fix bug that adds an empty space before the dc:title
    69
    710## [1.2.2] - 2019-02-21
  • rich-meta-in-rdfa/trunk/README.txt

    r2035848 r2035852  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    4848== Changelog ==
    4949
     50= 1.2.3 =
     51* Fix bug that adds an empty space before the dc:title
     52
    5053= 1.2.2 =
    5154* The title of each post is now preceded by a mention (if filled) editable in the settings page
  • rich-meta-in-rdfa/trunk/includes/class-rich-meta-in-rdfa.php

    r2035848 r2035852  
    6565            $this->version = RICH_META_IN_RDFA_VERSION;
    6666        } else {
    67             $this->version = '1.2.2';
     67            $this->version = '1.2.3';
    6868        }
    6969        $this->plugin_name = 'rich-meta-in-rdfa';
  • rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php

    r2035848 r2035852  
    107107        $rich_meta_in_rdfa_options = get_option( $this->plugin_name );
    108108        $pre_title = '';
    109         if( in_array( 'intro_text', $rich_meta_in_rdfa_options ) ) {
     109        if( in_array( 'intro_text', $rich_meta_in_rdfa_options ) && $rich_meta_in_rdfa_options['intro_text'] != '' ) {
    110110            $pre_title .= $rich_meta_in_rdfa_options['intro_text'] . ' ';
    111111        }
  • rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php

    r2035848 r2035852  
    1717 * Plugin URI:        https://github.com/dariah-eric/rich-meta-in-rdfa
    1818 * Description:       This plugin allows user to add RDFa into their posts.
    19  * Version:           1.2.2
     19 * Version:           1.2.3
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
Note: See TracChangeset for help on using the changeset viewer.