Changeset 2035852
- Timestamp:
- 02/21/2019 11:24:55 AM (7 years ago)
- Location:
- rich-meta-in-rdfa
- Files:
-
- 5 edited
- 22 copied
-
tags/1.2.3 (copied) (copied from rich-meta-in-rdfa/trunk)
-
tags/1.2.3/.editorconfig (copied) (copied from rich-meta-in-rdfa/trunk/.editorconfig)
-
tags/1.2.3/.travis.yml (copied) (copied from rich-meta-in-rdfa/trunk/.travis.yml)
-
tags/1.2.3/AUTHORS (copied) (copied from rich-meta-in-rdfa/trunk/AUTHORS)
-
tags/1.2.3/CHANGELOG.md (copied) (copied from rich-meta-in-rdfa/trunk/CHANGELOG.md) (1 diff)
-
tags/1.2.3/LICENSE (copied) (copied from rich-meta-in-rdfa/trunk/LICENSE)
-
tags/1.2.3/LICENSE.txt (copied) (copied from rich-meta-in-rdfa/trunk/LICENSE.txt)
-
tags/1.2.3/README.txt (copied) (copied from rich-meta-in-rdfa/trunk/README.txt) (2 diffs)
-
tags/1.2.3/admin (copied) (copied from rich-meta-in-rdfa/trunk/admin)
-
tags/1.2.3/admin/class-rich-meta-in-rdfa-admin.php (copied) (copied from rich-meta-in-rdfa/trunk/admin/class-rich-meta-in-rdfa-admin.php)
-
tags/1.2.3/admin/partials/rich-meta-in-rdfa-admin-display.php (copied) (copied from rich-meta-in-rdfa/trunk/admin/partials/rich-meta-in-rdfa-admin-display.php)
-
tags/1.2.3/bin (copied) (copied from rich-meta-in-rdfa/trunk/bin)
-
tags/1.2.3/includes (copied) (copied from rich-meta-in-rdfa/trunk/includes)
-
tags/1.2.3/includes/class-rich-meta-in-rdfa.php (copied) (copied from rich-meta-in-rdfa/trunk/includes/class-rich-meta-in-rdfa.php) (1 diff)
-
tags/1.2.3/phpcs.xml.dist (copied) (copied from rich-meta-in-rdfa/trunk/phpcs.xml.dist)
-
tags/1.2.3/phpunit.xml.dist (copied) (copied from rich-meta-in-rdfa/trunk/phpunit.xml.dist)
-
tags/1.2.3/public (copied) (copied from rich-meta-in-rdfa/trunk/public)
-
tags/1.2.3/public/class-rich-meta-in-rdfa-public.php (copied) (copied from rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php) (1 diff)
-
tags/1.2.3/rich-meta-in-rdfa.php (copied) (copied from rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php) (1 diff)
-
tags/1.2.3/tests (copied) (copied from rich-meta-in-rdfa/trunk/tests)
-
tags/1.2.3/tests/test-class-rich-meta-in-rdfa-public.php (copied) (copied from rich-meta-in-rdfa/trunk/tests/test-class-rich-meta-in-rdfa-public.php)
-
tags/1.2.3/uninstall.php (copied) (copied from rich-meta-in-rdfa/trunk/uninstall.php)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-rich-meta-in-rdfa.php (modified) (1 diff)
-
trunk/public/class-rich-meta-in-rdfa-public.php (modified) (1 diff)
-
trunk/rich-meta-in-rdfa.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rich-meta-in-rdfa/tags/1.2.3/CHANGELOG.md
r2035848 r2035852 4 4 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) 5 5 and 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 6 9 7 10 ## [1.2.2] - 2019-02-21 -
rich-meta-in-rdfa/tags/1.2.3/README.txt
r2035848 r2035852 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 48 48 == Changelog == 49 49 50 = 1.2.3 = 51 * Fix bug that adds an empty space before the dc:title 52 50 53 = 1.2.2 = 51 54 * 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 65 65 $this->version = RICH_META_IN_RDFA_VERSION; 66 66 } else { 67 $this->version = '1.2. 2';67 $this->version = '1.2.3'; 68 68 } 69 69 $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 107 107 $rich_meta_in_rdfa_options = get_option( $this->plugin_name ); 108 108 $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'] != '' ) { 110 110 $pre_title .= $rich_meta_in_rdfa_options['intro_text'] . ' '; 111 111 } -
rich-meta-in-rdfa/tags/1.2.3/rich-meta-in-rdfa.php
r2035848 r2035852 17 17 * Plugin URI: https://github.com/dariah-eric/rich-meta-in-rdfa 18 18 * Description: This plugin allows user to add RDFa into their posts. 19 * Version: 1.2. 219 * Version: 1.2.3 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu -
rich-meta-in-rdfa/trunk/CHANGELOG.md
r2035848 r2035852 4 4 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) 5 5 and 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 6 9 7 10 ## [1.2.2] - 2019-02-21 -
rich-meta-in-rdfa/trunk/README.txt
r2035848 r2035852 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 48 48 == Changelog == 49 49 50 = 1.2.3 = 51 * Fix bug that adds an empty space before the dc:title 52 50 53 = 1.2.2 = 51 54 * 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 65 65 $this->version = RICH_META_IN_RDFA_VERSION; 66 66 } else { 67 $this->version = '1.2. 2';67 $this->version = '1.2.3'; 68 68 } 69 69 $this->plugin_name = 'rich-meta-in-rdfa'; -
rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php
r2035848 r2035852 107 107 $rich_meta_in_rdfa_options = get_option( $this->plugin_name ); 108 108 $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'] != '' ) { 110 110 $pre_title .= $rich_meta_in_rdfa_options['intro_text'] . ' '; 111 111 } -
rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php
r2035848 r2035852 17 17 * Plugin URI: https://github.com/dariah-eric/rich-meta-in-rdfa 18 18 * Description: This plugin allows user to add RDFa into their posts. 19 * Version: 1.2. 219 * Version: 1.2.3 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu
Note: See TracChangeset
for help on using the changeset viewer.