Changeset 1121380
- Timestamp:
- 03/26/2015 01:23:51 PM (11 years ago)
- Location:
- vevida-optimizer/trunk
- Files:
-
- 2 edited
-
convert_2_innodb.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vevida-optimizer/trunk/convert_2_innodb.php
r1121359 r1121380 22 22 e.preventDefault(); 23 23 var data = { 24 'action': 'vevida-optimizer-convertMyisamToInnodb' 24 'action': 'vevida-optimizer-convertMyisamToInnodb', 25 '_ajax_nonce': '<?php echo wp_create_nonce( 'vevida-optimizer-nonce' ); ?>' 25 26 }; 26 27 … … 39 40 add_action( 'wp_ajax_vevida-optimizer-convertMyisamToInnodb', 'vevida_optimizer_convertMyisamToInnodb' ); 40 41 function vevida_optimizer_convertMyisamToInnodb() { 42 check_ajax_referer( 'vevida-optimizer-nonce' ); 41 43 if ( !convertTables() ) { 42 44 echo '<h2>Whoops, error!</h2><p>Turns out something went wrong... Please check your PHP error log file.</p>'; -
vevida-optimizer/trunk/readme.txt
r1121363 r1121380 4 4 Requires at least: 3.9 5 5 Tested up to: 4.1.1 6 Stable tag: 1.0. 56 Stable tag: 1.0.6 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.0.6 = 99 Release date: March 26th 2015 100 101 * Include Ajax-nonce 102 98 103 = 1.0.5 = 99 104 Release date: March 26th 2015
Note: See TracChangeset
for help on using the changeset viewer.