Changeset 3126398
- Timestamp:
- 07/27/2024 05:06:34 AM (20 months ago)
- Location:
- pageapp
- Files:
-
- 18 added
- 3 edited
-
tags/1.3.9 (added)
-
tags/1.3.9/css (added)
-
tags/1.3.9/css/admin.css (added)
-
tags/1.3.9/images (added)
-
tags/1.3.9/images/pageapp20.png (added)
-
tags/1.3.9/inc (added)
-
tags/1.3.9/inc/cachelib.php (added)
-
tags/1.3.9/inc/httplib.php (added)
-
tags/1.3.9/inc/jsonlib.php (added)
-
tags/1.3.9/inc/pluginlib.php (added)
-
tags/1.3.9/inc/restlib.php (added)
-
tags/1.3.9/inc/settingslib.php (added)
-
tags/1.3.9/inc/utilslib.php (added)
-
tags/1.3.9/js (added)
-
tags/1.3.9/js/admin.js (added)
-
tags/1.3.9/pageapp-json.php (added)
-
tags/1.3.9/pageapp.php (added)
-
tags/1.3.9/readme.txt (added)
-
trunk/inc/settingslib.php (modified) (1 diff)
-
trunk/pageapp.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pageapp/trunk/inc/settingslib.php
r3107422 r3126398 74 74 public static function check_nounce($key) { 75 75 if (isset($_POST[$key])) { 76 if (wp_verify_nonce( $_POST[$key], plugin_basename( __FILE__ ))) {76 if (wp_verify_nonce(sanitize_key(wp_unslash($_POST[$key])), plugin_basename( __FILE__ ))) { 77 77 return true; 78 78 } else { -
pageapp/trunk/pageapp.php
r3107422 r3126398 4 4 Plugin URI: https://wordpress.org/plugins/pageapp/ 5 5 Description: Extensions to Wordpress wp-json for the PageApp API and mobile framework 6 Version: 1.3. 86 Version: 1.3.9 7 7 Author: PageApp 8 8 Author URI: https://www.pageapp.com -
pageapp/trunk/readme.txt
r3107422 r3126398 4 4 Requires at least: 3.0 5 5 Tested up to: 6.5.4 6 Stable tag: 1.3. 86 Stable tag: 1.3.9 7 7 License: © 2024 Thireen32 Pty Ltd 8 8 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=K6VKWB3HZB2T2&item_name=Donation%20to%20jameslow%2ecom¤cy_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8 … … 28 28 29 29 == Changelog == 30 31 = 1.3.9 = 32 * Escape nounces in SettingsLib 30 33 31 34 = 1.3.8 =
Note: See TracChangeset
for help on using the changeset viewer.