Changeset 3454263
- Timestamp:
- 02/05/2026 05:44:54 AM (8 weeks ago)
- Location:
- asmkc-schema
- Files:
-
- 3 edited
- 7 copied
-
tags/1.0.5 (copied) (copied from asmkc-schema/trunk)
-
tags/1.0.5/README.txt (copied) (copied from asmkc-schema/trunk/README.txt) (2 diffs)
-
tags/1.0.5/admin (copied) (copied from asmkc-schema/trunk/admin)
-
tags/1.0.5/asmkc-schema.php (copied) (copied from asmkc-schema/trunk/asmkc-schema.php) (1 diff)
-
tags/1.0.5/core (copied) (copied from asmkc-schema/trunk/core)
-
tags/1.0.5/languages (copied) (copied from asmkc-schema/trunk/languages)
-
tags/1.0.5/uninstall.php (copied) (copied from asmkc-schema/trunk/uninstall.php) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/asmkc-schema.php (modified) (1 diff)
-
trunk/uninstall.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asmkc-schema/tags/1.0.5/README.txt
r3454256 r3454263 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 67 67 == Changelog == 68 68 69 == Changelog == 70 71 = 1.0.5 = 72 * Fix: Fixed a critical error where uninstallation would fail due to an undefined variable in uninstall.php. (uninstall.php内での変数定義漏れによる重大なエラーを修正) 73 * Improvement: Added full Japanese translation to the readme and plugin description. (READMEと説明文の日本語化に対応) 74 69 75 = 1.0.2 = 70 76 * Security: Fixed nonce verification to include wp_unslash() and sanitize_key(). -
asmkc-schema/tags/1.0.5/asmkc-schema.php
r3454256 r3454263 4 4 * Plugin URI: https://web.seikatu-labo.com/asmkc-schema-pro/ 5 5 * Description: A structured data (JSON-LD) management plugin specialized for Japanese SEO. It automatically controls duplicates with themes and other plugins to send correct information to Google. 6 * Version: 1.0. 46 * Version: 1.0.5 7 7 * Author: ASMKC 8 8 * Text Domain: asmkc-schema -
asmkc-schema/tags/1.0.5/uninstall.php
r3454224 r3454263 7 7 // uninstall.php 定数が定義されていない場合は終了 8 8 if (!defined('WP_UNINSTALL_PLUGIN')) { 9 exit;9 exit; 10 10 } 11 11 … … 16 16 delete_option('asmkc_schema_control'); 17 17 18 // ※ post_meta (_asmkc_...) は膨大な数になる可能性があるため、 19 // 通常のアンインストール処理では残すのが一般的(再インストール時の復元のため)。 20 // もし完全に消したい場合は以下のコメントアウトを外す。 18 // グローバル変数の宣言(これが必要!) 19 global $wpdb; 21 20 21 // post_meta (_asmkc_...) を削除 22 22 // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Uninstall cleanup. 23 23 $wpdb->query( 24 $wpdb->prepare(25 "DELETE FROM {$wpdb->postmeta} WHERE meta_key LIKE %s",26 $wpdb->esc_like( '_asmkc_' ) . '%'27 )24 $wpdb->prepare( 25 "DELETE FROM {$wpdb->postmeta} WHERE meta_key LIKE %s", 26 $wpdb->esc_like( '_asmkc_' ) . '%' 27 ) 28 28 ); -
asmkc-schema/trunk/README.txt
r3454256 r3454263 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 67 67 == Changelog == 68 68 69 == Changelog == 70 71 = 1.0.5 = 72 * Fix: Fixed a critical error where uninstallation would fail due to an undefined variable in uninstall.php. (uninstall.php内での変数定義漏れによる重大なエラーを修正) 73 * Improvement: Added full Japanese translation to the readme and plugin description. (READMEと説明文の日本語化に対応) 74 69 75 = 1.0.2 = 70 76 * Security: Fixed nonce verification to include wp_unslash() and sanitize_key(). -
asmkc-schema/trunk/asmkc-schema.php
r3454256 r3454263 4 4 * Plugin URI: https://web.seikatu-labo.com/asmkc-schema-pro/ 5 5 * Description: A structured data (JSON-LD) management plugin specialized for Japanese SEO. It automatically controls duplicates with themes and other plugins to send correct information to Google. 6 * Version: 1.0. 46 * Version: 1.0.5 7 7 * Author: ASMKC 8 8 * Text Domain: asmkc-schema -
asmkc-schema/trunk/uninstall.php
r3454224 r3454263 7 7 // uninstall.php 定数が定義されていない場合は終了 8 8 if (!defined('WP_UNINSTALL_PLUGIN')) { 9 exit;9 exit; 10 10 } 11 11 … … 16 16 delete_option('asmkc_schema_control'); 17 17 18 // ※ post_meta (_asmkc_...) は膨大な数になる可能性があるため、 19 // 通常のアンインストール処理では残すのが一般的(再インストール時の復元のため)。 20 // もし完全に消したい場合は以下のコメントアウトを外す。 18 // グローバル変数の宣言(これが必要!) 19 global $wpdb; 21 20 21 // post_meta (_asmkc_...) を削除 22 22 // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Uninstall cleanup. 23 23 $wpdb->query( 24 $wpdb->prepare(25 "DELETE FROM {$wpdb->postmeta} WHERE meta_key LIKE %s",26 $wpdb->esc_like( '_asmkc_' ) . '%'27 )24 $wpdb->prepare( 25 "DELETE FROM {$wpdb->postmeta} WHERE meta_key LIKE %s", 26 $wpdb->esc_like( '_asmkc_' ) . '%' 27 ) 28 28 );
Note: See TracChangeset
for help on using the changeset viewer.