Changeset 1845157
- Timestamp:
- 03/22/2018 03:57:08 PM (8 years ago)
- Location:
- schema-app-structured-data-for-schemaorg/trunk
- Files:
-
- 4 edited
-
hunch-schema.php (modified) (1 diff)
-
lib/SchemaServer.php (modified) (1 diff)
-
lib/SchemaSettings.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
schema-app-structured-data-for-schemaorg/trunk/hunch-schema.php
r1833938 r1845157 5 5 * Plugin URI: http://www.schemaapp.com 6 6 * Description: This plugin adds http://schema.org structured data to your website 7 * Version: 1.9. 97 * Version: 1.9.10 8 8 * Author: Hunch Manifest 9 9 * Author URI: https://www.hunchmanifest.com -
schema-app-structured-data-for-schemaorg/trunk/lib/SchemaServer.php
r1816579 r1845157 58 58 return ''; 59 59 } 60 61 // Decode accent characters 62 $resource = urldecode( $resource ); 60 63 61 64 -
schema-app-structured-data-for-schemaorg/trunk/lib/SchemaSettings.php
r1833938 r1845157 491 491 $new_input = array(); 492 492 493 // Schema App Settings tab 494 if( isset( $input['graph_uri'] ) ) 493 if ( isset( $input['graph_uri'] ) ) 495 494 { 496 495 $new_input['graph_uri'] = sanitize_text_field( $input['graph_uri'] ); … … 502 501 wp_remote_get( sprintf( 'https://api%s.hunchmanifest.com/utility/template?template=http://hunchmanifest.com/ontology/schemarules#AddSiteAccount&accountId=%s&siteUrl=%s&software=Wordpress', $APISubDomain, $new_input['graph_uri'], site_url() ), array( 'timeout' => 15, 'sslverify' => false ) ); 503 502 } 503 504 // Arguments: Settings Field, Old Value, New Value 505 do_action( 'hunch_schema_settings_sanitize', 'graph_uri', ( isset( $this->Settings['graph_uri'] ) ? $this->Settings['graph_uri'] : '' ), $new_input['graph_uri'] ); 504 506 } 505 507 … … 510 512 { 511 513 $new_input[$FieldName] = sanitize_text_field( $input[$FieldName] ); 514 515 // Arguments: Settings Field, Old Value, New Value 516 do_action( 'hunch_schema_settings_sanitize', $FieldName, ( isset( $this->Settings[$FieldName] ) ? $this->Settings[$FieldName] : '' ), $new_input[$FieldName] ); 512 517 } 513 518 } -
schema-app-structured-data-for-schemaorg/trunk/readme.txt
r1833938 r1845157 7 7 Requires at least: 3.5 8 8 Tested up to: 4.8 9 Stable tag: 1.9. 99 Stable tag: 1.9.10 10 10 License: GPL2 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 84 84 85 85 == Changelog == 86 = 1.9.10 = 87 - Fix, loading double encoded Cyrillic characters in URL lookup 88 86 89 = 1.9.9 = 87 90 - Feature, add setting for schema in header or footer
Note: See TracChangeset
for help on using the changeset viewer.