Plugin Directory

Changeset 3304628


Ignore:
Timestamp:
06/02/2025 05:35:47 AM (10 months ago)
Author:
jidaikobo
Message:

Update to version 3.2.6

Location:
dashi
Files:
1 deleted
3 edited
26 copied

Legend:

Unmodified
Added
Removed
  • dashi/tags/3.2.6/classes/Posttype/Save.php

    r3268587 r3304628  
    283283                // label
    284284                $label = isset($attrs['label']) ? $attrs['label'] : $orig_key;
    285                 $label = $is_dupped ? $attrs['label_origi'] : $label;
     285                $label_origi = isset($attrs['label_origi']) ? $attrs['label_origi'] : '';
     286                $label = $is_dupped ? $label_origi : $label;
    286287
    287288                // uploadの場合はルート相対パスを使う
  • dashi/tags/3.2.6/dashi.php

    r3268587 r3304628  
    77Text Domain: dashi
    88Domain Path: /languages/
    9 Version: 3.2.5
     9Version: 3.2.6
    1010Author URI: http://www.jidaikobo.com/
    1111thx: https://github.com/trentrichardson/jQuery-Timepicker-Addon/tree/master/src
  • dashi/tags/3.2.6/readme.txt

    r3268587 r3304628  
    33Donate link: http://www.jidaikobo.com/donate.html
    44Tags: custom field, custom post type
    5 Tested up to: 6.7.2
    6 Stable tag: 3.2.5
     5Tested up to: 6.8.1
     6Stable tag: 3.2.6
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 3.2.6 =
     46fix array key
     47
    4548= 3.2.5 =
    4649add file_media type to custom_fields
  • dashi/trunk/classes/Posttype/Save.php

    r3268587 r3304628  
    283283                // label
    284284                $label = isset($attrs['label']) ? $attrs['label'] : $orig_key;
    285                 $label = $is_dupped ? $attrs['label_origi'] : $label;
     285                $label_origi = isset($attrs['label_origi']) ? $attrs['label_origi'] : '';
     286                $label = $is_dupped ? $label_origi : $label;
    286287
    287288                // uploadの場合はルート相対パスを使う
  • dashi/trunk/dashi.php

    r3268587 r3304628  
    77Text Domain: dashi
    88Domain Path: /languages/
    9 Version: 3.2.5
     9Version: 3.2.6
    1010Author URI: http://www.jidaikobo.com/
    1111thx: https://github.com/trentrichardson/jQuery-Timepicker-Addon/tree/master/src
  • dashi/trunk/readme.txt

    r3268587 r3304628  
    33Donate link: http://www.jidaikobo.com/donate.html
    44Tags: custom field, custom post type
    5 Tested up to: 6.7.2
    6 Stable tag: 3.2.5
     5Tested up to: 6.8.1
     6Stable tag: 3.2.6
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 3.2.6 =
     46fix array key
     47
    4548= 3.2.5 =
    4649add file_media type to custom_fields
Note: See TracChangeset for help on using the changeset viewer.