Changeset 923348
- Timestamp:
- 05/29/2014 09:43:59 PM (12 years ago)
- Location:
- wp-evs/trunk
- Files:
-
- 4 edited
-
admin/admin.php (modified) (2 diffs)
-
integrate_basic.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-evs.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-evs/trunk/admin/admin.php
r707567 r923348 40 40 // Save the posted value in the database 41 41 update_option('wp-evs-configured', true); 42 update_option('evs_location', $_POST['evs_location']); 42 43 // Reconstruct the location 44 $evs_location = 'http://'.implode('.', $_POST['evs_location_frags']); 45 46 update_option('evs_location', $evs_location); 43 47 update_option('evs_username', $_POST['evs_username']); 44 48 update_option('evs_password', $_POST['evs_password']); … … 95 99 if(response.success == true) { 96 100 if(typeof response.project_location == 'string') { 97 $('#evs_location').val(response.project_location); 101 var loc = response.project_location.replace('http://', '').replace('https://', ''), loc_frags = loc.split('.'); 102 $('#evs_location').prop('name', ''); // remove this field 103 $.each(loc_frags, function(idx, frag) { 104 $('<input type="hidden" name="evs_location_frags[]" value="'+frag+'" />').appendTo($('#wp-evs-admin-form')); 105 }); 98 106 $('#evs_oembed_support').val(''+(response.oembed_support || false)); 99 107 $('#wp-evs-admin-form').submit(); -
wp-evs/trunk/integrate_basic.php
r707567 r923348 5 5 <script type="text/javascript"> 6 6 function WPEVSPopup() { 7 var evscode = prompt('Please enter your EasyVideoSuite code here. Audio files and lightboxes will work also!');7 var evscode = prompt('Please enter your EasyVideoSuite code here. Lightboxes, split tests and playlists will all work as well!'); 8 8 if(typeof(evscode) == 'string' && evscode.length > 0) { 9 9 var url = '<?php echo plugins_url('/wp-evs/images/placeholder.png?v=1'); ?>'; -
wp-evs/trunk/readme.txt
r919459 r923348 41 41 == Changelog == 42 42 43 = 1.1.8 = 44 * Fixed incompatibility with some strict mod_security rules, preventing saving settings 45 43 46 = 1.1.7 = 44 47 * Same improved distortion-prevention for EVP2 videos -
wp-evs/trunk/wp-evs.php
r919459 r923348 4 4 Plugin URI: http://easyvideosuite.com/ 5 5 Description: Plugin to easily embed EasyVideoSuite videos into WordPress posts! 6 Date: 2014, May, 2 26 Date: 2014, May, 29 7 7 Author: WebActix 8 8 Author URI: http://webactix.com 9 Version: 1.1. 79 Version: 1.1.8 10 10 */ 11 11
Note: See TracChangeset
for help on using the changeset viewer.