Plugin Directory

Changeset 2548775


Ignore:
Timestamp:
06/16/2021 08:20:54 AM (5 years ago)
Author:
timvaniersel
Message:

Improve security, update readme

Location:
websitescanner-custom-schema/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • websitescanner-custom-schema/trunk/README.txt

    r2486204 r2548775  
    55Requires at least: 3.0.1
    66Tested up to: 5.7
    7 Stable tag: trunk
     7Stable tag: 1.3.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • websitescanner-custom-schema/trunk/admin/partials/websitescanner-custom-schema-post-editor-display.php

    r2214917 r2548775  
    9595</p><br>
    9696
    97 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_0]" data-id="0" id="webs-custom-schema-0" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_0)){ echo prettyPrint(wp_unslash(json_decode($custom_schema_0)));} ?></textarea>
     97<textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_0]" data-id="0" id="webs-custom-schema-0" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_0)){ echo prettyPrint(wp_unslash(json_decode($custom_schema_0)));} ?></textarea>
    9898<label for="webs-custom-schema-0" class="webs-custom-schema-error" id="webs-custom-schema-errors-0" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></label></br><br>
    9999
     
    104104<?php } ?>
    105105<span class="webs-schema-1 <?php if(!$custom_schema_1 && !$custom_schema_2){echo "hidden";}?>">
    106 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_1]" data-id="1" id="webs-custom-schema-1" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_1)){echo prettyPrint(wp_unslash(json_decode($custom_schema_1)));} ?></textarea>
     106<textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_1]" data-id="1" id="webs-custom-schema-1" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_1)){echo prettyPrint(wp_unslash(json_decode($custom_schema_1)));} ?></textarea>
    107107<span class="webs-custom-schema-error" id="webs-custom-schema-errors-1" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></span></br><br>
    108108</span>
    109109<span class="webs-schema-2 <?php if(!$custom_schema_1 && !$custom_schema_2){echo "hidden";}?>">
    110 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_2]" data-id="2" id="webs-custom-schema-2" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_2)){echo prettyPrint(wp_unslash(json_decode($custom_schema_2)));} ?></textarea>
     110<textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_2]" data-id="2" id="webs-custom-schema-2" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_2)){echo prettyPrint(wp_unslash(json_decode($custom_schema_2)));} ?></textarea>
    111111<span class="webs-custom-schema-error" id="webs-custom-schema-errors-2" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></span></br><br>
    112112</span>
  • websitescanner-custom-schema/trunk/websitescanner-custom-schema.php

    r2548573 r2548775  
    1717 * Plugin URI:        https://plugin.nl/en/websitescanner-custom-schema-plugin/
    1818 * Description:       Adds a field to the editor for custom JSON-ld schema markup.
    19  * Version:           1.3.3
     19 * Version:           1.3.4
    2020 * Author:            Plugin.nl
    2121 * Author URI:        https://plugin.nl/en/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'WEBSITESCANNER_CUSTOM_SCHEMA_VERSION', '1.3.3' );
     38define( 'WEBSITESCANNER_CUSTOM_SCHEMA_VERSION', '1.3.4' );
    3939/**
    4040 * The core plugin class that is used to define internationalization,
Note: See TracChangeset for help on using the changeset viewer.