Changeset 3304628
- Timestamp:
- 06/02/2025 05:35:47 AM (10 months ago)
- Location:
- dashi
- Files:
-
- 1 deleted
- 3 edited
- 26 copied
-
tags/3.2.6 (copied) (copied from dashi/trunk)
-
tags/3.2.6/classes/Alias.php (copied) (copied from dashi/trunk/classes/Alias.php)
-
tags/3.2.6/classes/Field.php (copied) (copied from dashi/trunk/classes/Field.php)
-
tags/3.2.6/classes/Posttype/Another.php (copied) (copied from dashi/trunk/classes/Posttype/Another.php)
-
tags/3.2.6/classes/Posttype/Base.php (copied) (copied from dashi/trunk/classes/Posttype/Base.php)
-
tags/3.2.6/classes/Posttype/Copy.php (copied) (copied from dashi/trunk/classes/Posttype/Copy.php)
-
tags/3.2.6/classes/Posttype/Csv.php (copied) (copied from dashi/trunk/classes/Posttype/Csv.php)
-
tags/3.2.6/classes/Posttype/CustomFields.php (copied) (copied from dashi/trunk/classes/Posttype/CustomFields.php)
-
tags/3.2.6/classes/Posttype/CustomFieldsCategories.php (copied) (copied from dashi/trunk/classes/Posttype/CustomFieldsCategories.php)
-
tags/3.2.6/classes/Posttype/CustomFieldsGoogleMap.php (copied) (copied from dashi/trunk/classes/Posttype/CustomFieldsGoogleMap.php)
-
tags/3.2.6/classes/Posttype/Index.php (copied) (copied from dashi/trunk/classes/Posttype/Index.php)
-
tags/3.2.6/classes/Posttype/Posttype.php (copied) (copied from dashi/trunk/classes/Posttype/Posttype.php)
-
tags/3.2.6/classes/Posttype/PublicForm.php (copied) (copied from dashi/trunk/classes/Posttype/PublicForm.php)
-
tags/3.2.6/classes/Posttype/Redirect.php (copied) (copied from dashi/trunk/classes/Posttype/Redirect.php)
-
tags/3.2.6/classes/Posttype/Save.php (copied) (copied from dashi/trunk/classes/Posttype/Save.php) (1 diff)
-
tags/3.2.6/classes/Posttype/Search.php (copied) (copied from dashi/trunk/classes/Posttype/Search.php)
-
tags/3.2.6/classes/Posttype/Virtual.php (copied) (copied from dashi/trunk/classes/Posttype/Virtual.php)
-
tags/3.2.6/classes/Save.php (deleted)
-
tags/3.2.6/classes/Security.php (copied) (copied from dashi/trunk/classes/Security.php)
-
tags/3.2.6/dashi.php (copied) (copied from dashi/trunk/dashi.php) (1 diff)
-
tags/3.2.6/file.php (copied) (copied from dashi/trunk/file.php)
-
tags/3.2.6/posttype/Crawlsearch.php (copied) (copied from dashi/trunk/posttype/Crawlsearch.php)
-
tags/3.2.6/posttype/Editablehelp.php (copied) (copied from dashi/trunk/posttype/Editablehelp.php)
-
tags/3.2.6/posttype/Pagepart.php (copied) (copied from dashi/trunk/posttype/Pagepart.php)
-
tags/3.2.6/readme.txt (copied) (copied from dashi/trunk/readme.txt) (2 diffs)
-
tags/3.2.6/templates/base.php (copied) (copied from dashi/trunk/templates/base.php)
-
tags/3.2.6/templates/search.php (copied) (copied from dashi/trunk/templates/search.php)
-
trunk/classes/Posttype/Save.php (modified) (1 diff)
-
trunk/dashi.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dashi/tags/3.2.6/classes/Posttype/Save.php
r3268587 r3304628 283 283 // label 284 284 $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; 286 287 287 288 // uploadの場合はルート相対パスを使う -
dashi/tags/3.2.6/dashi.php
r3268587 r3304628 7 7 Text Domain: dashi 8 8 Domain Path: /languages/ 9 Version: 3.2. 59 Version: 3.2.6 10 10 Author URI: http://www.jidaikobo.com/ 11 11 thx: https://github.com/trentrichardson/jQuery-Timepicker-Addon/tree/master/src -
dashi/tags/3.2.6/readme.txt
r3268587 r3304628 3 3 Donate link: http://www.jidaikobo.com/donate.html 4 4 Tags: custom field, custom post type 5 Tested up to: 6. 7.26 Stable tag: 3.2. 55 Tested up to: 6.8.1 6 Stable tag: 3.2.6 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 3.2.6 = 46 fix array key 47 45 48 = 3.2.5 = 46 49 add file_media type to custom_fields -
dashi/trunk/classes/Posttype/Save.php
r3268587 r3304628 283 283 // label 284 284 $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; 286 287 287 288 // uploadの場合はルート相対パスを使う -
dashi/trunk/dashi.php
r3268587 r3304628 7 7 Text Domain: dashi 8 8 Domain Path: /languages/ 9 Version: 3.2. 59 Version: 3.2.6 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
r3268587 r3304628 3 3 Donate link: http://www.jidaikobo.com/donate.html 4 4 Tags: custom field, custom post type 5 Tested up to: 6. 7.26 Stable tag: 3.2. 55 Tested up to: 6.8.1 6 Stable tag: 3.2.6 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 3.2.6 = 46 fix array key 47 45 48 = 3.2.5 = 46 49 add file_media type to custom_fields
Note: See TracChangeset
for help on using the changeset viewer.