Changeset 1376672
- Timestamp:
- 03/22/2016 10:24:27 PM (10 years ago)
- Location:
- woocommerce-html5-video/trunk
- Files:
-
- 3 edited
-
WooCommerceHTML5Video.php (modified) (1 diff)
-
WooCommerceIntegrationBackend.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-html5-video/trunk/WooCommerceHTML5Video.php
r1362130 r1376672 6 6 * Author: Webilop 7 7 * Author URI: http://www.webilop.com 8 * Version: 1.7. 38 * Version: 1.7.4 9 9 * License: GPLv2 or later 10 10 */ -
woocommerce-html5-video/trunk/WooCommerceIntegrationBackend.php
r1362130 r1376672 66 66 } 67 67 } 68 update_post_meta($post_id, 'wo_di_video_product_videos',json_encode($arrayJson, JSON_UNESCAPED_UNICODE)); 68 //encode data 69 $data = '5.4.0' <= phpversion() ? json_encode($arrayJson, JSON_UNESCAPED_UNICODE) : json_encode($arrayJson); 70 update_post_meta($post_id, 'wo_di_video_product_videos', $data); 69 71 //update text of tinymce editor 70 72 $mce_editor_content = $_POST['wo_di_editormce_video']; … … 401 403 $dimension = 'Default'; 402 404 $width = get_option('wo_di_config_video_width'); 403 $height = get_option('wo_di_config_video_height');405 $height = get_option('wo_di_config_video_height'); 404 406 } 405 407 else { … … 468 470 <td> 469 471 <input type=hidden name='wo_di_video_active[]' value='<?= $video->active ?>' /> 470 <input type='checkbox' value='active' $checkedonchange='update_input_active(this)'/>472 <input type='checkbox' value='active' <?php echo $checked; ?> onchange='update_input_active(this)'/> 471 473 </td> 472 474 <td> -
woocommerce-html5-video/trunk/readme.txt
r1362130 r1376672 4 4 Tags: woocommerce, woocommerce video, woocommerce add-on, online store, product video, html5 video, mp4, ogg 5 5 Requires at least: 4.0 6 Tested up to: 4.4 7 Stable tag: 1.7. 36 Tested up to: 4.4.2 7 Stable tag: 1.7.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 130 130 * Fix encoding video titles on saving of products. 131 131 132 = 1.7.4 = 133 * Fix encoding video data on saving of products for PHP versiones under 5.4.0. 134 * Fix on active checkbox in list of videos in products. 135
Note: See TracChangeset
for help on using the changeset viewer.