Plugin Directory

Changeset 2471303


Ignore:
Timestamp:
02/09/2021 05:10:45 AM (5 years ago)
Author:
milanmk
Message:

Release 1.17.5

Location:
schema-app-structured-data-for-schemaorg
Files:
27 added
3 edited

Legend:

Unmodified
Added
Removed
  • schema-app-structured-data-for-schemaorg/trunk/hunch-schema.php

    r2434923 r2471303  
    55 * Plugin URI: http://www.schemaapp.com
    66 * Description: This plugin adds http://schema.org structured data to your website
    7  * Version: 1.17.4
     7 * Version: 1.17.5
    88 * Author: Hunch Manifest
    99 * Author URI: https://www.hunchmanifest.com
  • schema-app-structured-data-for-schemaorg/trunk/lib/SchemaFront.php

    r2434923 r2471303  
    8585    public function hook_rest_api_init() {
    8686        register_rest_route( 'hunch_schema', '/cache/', array(
    87             array( 'methods' => 'GET', 'callback' => array( $this, 'rest_api_cache' ) ),
    88             array( 'methods' => 'POST', 'callback' => array( $this, 'rest_api_cache_modify' ) ),
     87            array( 'methods' => 'GET', 'callback' => array( $this, 'rest_api_cache' ), 'permission_callback' => '__return_true' ),
     88            array( 'methods' => 'POST', 'callback' => array( $this, 'rest_api_cache_modify' ), 'permission_callback' => '__return_true' ),
    8989        ) );
    9090    }
  • schema-app-structured-data-for-schemaorg/trunk/readme.txt

    r2434923 r2471303  
    99Requires PHP: 5.4
    1010Tested up to: 5.6
    11 Stable tag: 1.17.4
     11Stable tag: 1.17.5
    1212License: GPL2
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8888== Changelog ==
    8989
     90= 1.17.5 =
     91- Fix, Added required parameter permission_callback to Rest API
     92
    9093= 1.17.4 =
    9194- Improve, Updated get permalink routine for single Page/Post
     
    448451== Upgrade Notice ==
    449452
    450 = 1.17.4 =
    451  - Updated get permalink routine for single Page/Post, Fixed Yoast SEO meta description
     453= 1.17.5 =
     454 - Added required parameter permission_callback to Rest API
Note: See TracChangeset for help on using the changeset viewer.