Changeset 3397689
- Timestamp:
- 11/18/2025 02:35:45 AM (3 months ago)
- Location:
- wp-openapi/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
src/Util.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
-
wp-openapi.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-openapi/trunk/readme.txt
r3396846 r3397689 5 5 Tested up to: 6.8.3 6 6 Requires PHP: 7.1 7 Stable tag: 1.0.2 67 Stable tag: 1.0.27 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
wp-openapi/trunk/src/Util.php
r3358117 r3397689 74 74 // Remove invalid characters for schema titles. 75 75 // Only allow alphanumeric characters and underscores. 76 $title = preg_replace( '/[^a-zA-Z0-9_ ]/', '_', $title );76 $title = preg_replace( '/[^a-zA-Z0-9_-]/', '_', $title ); 77 77 // Ensure the title starts with an alphabetic character or underscore. 78 78 if ( ! preg_match( '/^[a-zA-Z_]/', $title ) ) { -
wp-openapi/trunk/vendor/composer/installed.php
r3396846 r3397689 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 39bf09005a842bf9640f5f542921ec70908d9723',6 'reference' => '853a0f76db8f93834ca43e226c24c8a5058d1d12', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 39bf09005a842bf9640f5f542921ec70908d9723',16 'reference' => '853a0f76db8f93834ca43e226c24c8a5058d1d12', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
wp-openapi/trunk/wp-openapi.php
r3396846 r3397689 10 10 * Plugin Name: WP OpenAPI 11 11 * Plugin URI: https://github.com/moon0326/wp-openapi 12 * Version: 1.0.2 612 * Version: 1.0.27 13 13 * Author: Moon K 14 14 * Author URI: https://github.com/moon0326
Note: See TracChangeset
for help on using the changeset viewer.