Changeset 2843753
- Timestamp:
- 01/05/2023 12:48:07 AM (3 years ago)
- Location:
- dashi/trunk
- Files:
-
- 4 edited
-
classes/Posttype/CustomFields.php (modified) (1 diff)
-
classes/Posttype/Posttype.php (modified) (1 diff)
-
dashi.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dashi/trunk/classes/Posttype/CustomFields.php
r2269647 r2843753 356 356 } 357 357 358 $template = isset($value[' template']) ? $value['template'] : '';358 $template = isset($value['args']['template']) ? $value['args']['template'] : ''; 359 359 360 360 // スクリーンリーダ向けラベルの有無 -
dashi/trunk/classes/Posttype/Posttype.php
r2696826 r2843753 633 633 * 634 634 * @param string $str 635 * @return string 635 * @return string | bool 636 636 */ 637 637 public static function posttype2class($str) 638 638 { 639 $class = '\\Dashi\\Posttype\\'.ucfirst($str);639 $class = is_null($str) ? '' : '\\Dashi\\Posttype\\'.ucfirst($str); 640 640 return class_exists($class) ? $class : false; 641 641 } -
dashi/trunk/dashi.php
r2835587 r2843753 7 7 Text Domain: dashi 8 8 Domain Path: /languages/ 9 Version: 3.0. 49 Version: 3.0.5 10 10 Author URI: http://www.jidaikobo.com/ 11 11 thx: https://github.com/trentrichardson/jQuery-Timepicker-Addon/tree/master/src -
dashi/trunk/readme.txt
r2835587 r2843753 44 44 == Changelog == 45 45 46 = 3.0.5 = 47 fix php 8.0 not allow null argument at some built-in functions 48 46 49 = 3.0.4 = 47 50 fix pre_wp_unique_post_slug Hook 2
Note: See TracChangeset
for help on using the changeset viewer.