Changeset 2977494
- Timestamp:
- 10/11/2023 10:56:00 AM (2 years ago)
- Location:
- seosamba-webmasters/trunk
- Files:
-
- 5 edited
-
assets/js/dashboard.js (modified) (1 diff)
-
modules/admin.php (modified) (1 diff)
-
modules/dashboard.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
seosamba-webmasters.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
seosamba-webmasters/trunk/assets/js/dashboard.js
r1685507 r2977494 11 11 var data = { 12 12 action: 'seosfwm_save_access_key', 13 wp_access_key: $( 'input[name="wp_access_key"]' ).val() 13 wp_access_key: $( 'input[name="wp_access_key"]' ).val(), 14 security_field: $( 'input#wp-access-key_nonce' ).val() 14 15 }; 15 16 -
seosamba-webmasters/trunk/modules/admin.php
r1685507 r2977494 28 28 public function save_access_key() { 29 29 try { 30 if (is_admin() ) {30 if (is_admin() && wp_verify_nonce($this->_params['security_field'],self::ACCESS_KEY_FIELD) ) { 31 31 $this->_save_access_key(); 32 32 $response = array( -
seosamba-webmasters/trunk/modules/dashboard.php
r2002965 r2977494 69 69 <form action="" method="POST"> 70 70 <label class="text-bold fs14" for="wp-access-key">WordPress Access Key</label> 71 <input id="wp-access-key_nonce" type="hidden" value="<?php echo wp_create_nonce(SeosambaWebmasters::ACCESS_KEY_FIELD)?>" /> 71 72 <input id="wp-access-key" type="text" class="grid_5 alpha omega large" 72 73 name="<?php echo SeosambaWebmasters::ACCESS_KEY_FIELD; ?>" -
seosamba-webmasters/trunk/readme.txt
r2753058 r2977494 1 1 === SeoSamba for WordPress Webmasters === 2 Contributors: seosamba, olegmalii 2 Contributors: seosamba, olegmalii, volodymyrkarpov 3 3 Donate link: https://www.seosamba.com/donate-seosamba-for-wordpress-webmasters.html 4 4 Tags: SEO, search engine rankings, Google webmaster tools, Google Search Console, Google verification, Google sitemap, xml sitemap, wordpress SEO 5 5 Requires at least: 4.4 6 Tested up to: 6. 07 Stable tag: 1.0. 56 Tested up to: 6.3.1 7 Stable tag: 1.0.6 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 101 101 = 1.0.5 = 102 102 * Test plugin for version 6.0 103 = 1.0.6 = 104 * Test plugin for version 6.3.1 (security improvements) 103 105 == Upgrade Notice == 104 106 No upgrade notice yet -
seosamba-webmasters/trunk/seosamba-webmasters.php
r2753058 r2977494 4 4 Plugin URI: https://www.seosamba.com/wordpress-sitemap-seo-plugin-tool.html 5 5 Description: This plugin is a gateway to the "SeoSamba" platform. SeoSamba provides both free and premium SEO and marketing automation tools for websites owners. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: SeoSamba 8 8 Author URI: https://www.seosamba.com/
Note: See TracChangeset
for help on using the changeset viewer.