Changeset 2262550
- Timestamp:
- 03/17/2020 02:50:08 PM (6 years ago)
- Location:
- open-calais
- Files:
-
- 18 added
- 2 edited
-
tags/1.2.1 (added)
-
tags/1.2.1/.gitignore (added)
-
tags/1.2.1/README.md (added)
-
tags/1.2.1/assets (added)
-
tags/1.2.1/assets/css (added)
-
tags/1.2.1/assets/css/block-editor-styles.css (added)
-
tags/1.2.1/assets/css/classic-editor-styles.css (added)
-
tags/1.2.1/assets/js (added)
-
tags/1.2.1/assets/js/block-editor.asset.php (added)
-
tags/1.2.1/assets/js/block-editor.js (added)
-
tags/1.2.1/composer.json (added)
-
tags/1.2.1/open-calais.php (added)
-
tags/1.2.1/package-lock.json (added)
-
tags/1.2.1/package.json (added)
-
tags/1.2.1/readme.txt (added)
-
tags/1.2.1/src (added)
-
tags/1.2.1/src/block-editor-selector.js (added)
-
tags/1.2.1/src/index.js (added)
-
trunk/open-calais.php (modified) (3 diffs)
-
trunk/package.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
open-calais/trunk/open-calais.php
r2232993 r2262550 5 5 * Plugin URI: https://github.com/wpcomvip/metro/ 6 6 * Description: Use Open Calais to get suggested tags for your article. 7 * Version: 1.2. 07 * Version: 1.2.1 8 8 * Author: Metro.co.uk 9 9 * Author URI: https://github.com/wpcomvip/metro/graphs/contributors … … 576 576 577 577 // If set to only match existing tags, query those tags first and filter them. 578 if ( (bool) get_option( 'open_calais_show_existing' ) === true ) {578 if ( (bool) get_option( 'open_calais_show_existing' ) === true && ! empty( $names )) { 579 579 580 580 // Query terms by names … … 588 588 foreach ( $terms as $term ) { 589 589 $key = array_search( strtolower( $term->name ), $names, true ); 590 if ( isset( $key ) ) {590 if ( isset( $key ) && $key !== false ) { 591 591 $filtered_tags[] = $tags[ $key ]; 592 592 } -
open-calais/trunk/package.json
r2232993 r2262550 1 1 { 2 2 "name": "open-calais", 3 "version": "1.2. 0",3 "version": "1.2.1", 4 4 "description": "Block editor integration for Open Calais", 5 5 "author": "",
Note: See TracChangeset
for help on using the changeset viewer.