Changeset 3171873
- Timestamp:
- 10/19/2024 10:07:44 AM (18 months ago)
- Location:
- wp-content-copy-protector
- Files:
-
- 30 added
- 3 edited
-
tags/3.6.1 (added)
-
tags/3.6.1/admin-core.php (added)
-
tags/3.6.1/css (added)
-
tags/3.6.1/css/simpletabs.css (added)
-
tags/3.6.1/css/style-review.css (added)
-
tags/3.6.1/css/style.css (added)
-
tags/3.6.1/images (added)
-
tags/3.6.1/images/ad.png (added)
-
tags/3.6.1/images/click-here-arrow.png (added)
-
tags/3.6.1/images/icon-128x128.png (added)
-
tags/3.6.1/images/notice.png (added)
-
tags/3.6.1/images/right-click-protection.jpg (added)
-
tags/3.6.1/images/smart-phones-protection.png (added)
-
tags/3.6.1/images/warning.png (added)
-
tags/3.6.1/images/watermark-adv.jpg (added)
-
tags/3.6.1/images/watermarking-adv-examples.png (added)
-
tags/3.6.1/js (added)
-
tags/3.6.1/js/License.txt (added)
-
tags/3.6.1/js/simpletabs_1.3.js (added)
-
tags/3.6.1/languages (added)
-
tags/3.6.1/languages/wp-content-copy-protector-ar.mo (added)
-
tags/3.6.1/languages/wp-content-copy-protector-ar.po (added)
-
tags/3.6.1/languages/wp-content-copy-protector.pot (added)
-
tags/3.6.1/notifications.php (added)
-
tags/3.6.1/preventer-index.php (added)
-
tags/3.6.1/readme.txt (added)
-
tags/3.6.1/right-click-protection.jpg (added)
-
tags/3.6.1/the_globals.php (added)
-
tags/3.6.1/watermark-adv.jpg (added)
-
tags/3.6.1/watermarking-adv-examples.png (added)
-
trunk/admin-core.php (modified) (3 diffs)
-
trunk/preventer-index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-content-copy-protector/trunk/admin-core.php
r2954531 r3171873 10 10 add_action('admin_footer','alert_message'); 11 11 12 if ( isset( $_POST['Restore_defaults'] ) )12 if(isset($_POST["Restore_defaults"]) && (isset($_POST["_Restore_defaults"]) && wp_verify_nonce( $_POST[ '_Restore_defaults' ], 'Restore_defaults_nonce' ))) 13 13 { 14 14 update_option("wccp_settings" , ""); … … 17 17 } 18 18 19 if(isset($_POST["Save_settings"]) && (isset($_POST[" make_this_form_verified_nonce"]) && wp_verify_nonce( $_POST[ 'make_this_form_verified_nonce' ], 'make_form_nonce_action' )))19 if(isset($_POST["Save_settings"]) && (isset($_POST["_Save_settings"]) && wp_verify_nonce( $_POST[ '_Save_settings' ], 'Save_settings_nonce' ))) 20 20 { 21 21 //----------------------------------------------------list the options array values … … 174 174 <form method="POST"> 175 175 <input type="hidden" value="update" name="action"> 176 <?php wp_nonce_field('make_form_nonce_action','make_this_form_verified_nonce'); ?> 176 <?php wp_nonce_field('Save_settings_nonce','_Save_settings'); ?> 177 <?php wp_nonce_field('Restore_defaults_nonce','_Restore_defaults'); ?> 177 178 <div class="simpleTabs"> 178 179 <ul class="simpleTabsNavigation"> -
wp-content-copy-protector/trunk/preventer-index.php
r3132004 r3171873 4 4 Plugin URI: http://wordpress.org/plugins/w-p-content-copy-protector/ 5 5 Description: This wp plugin protect the posts content from being copied by any other web site author , you dont want your content to spread without your permission!! 6 Version: 3. 5.96 Version: 3.6.1 7 7 Author: wp-buy 8 8 Text Domain: wp-content-copy-protector -
wp-content-copy-protector/trunk/readme.txt
r3132031 r3171873 5 5 License URI: http://www.gnu.org/licenses/gpl-2.0.html 6 6 Requires at least: 4.8 7 Tested up to: 6.6. 18 Stable tag: 3. 5.97 Tested up to: 6.6.2 8 Stable tag: 3.6.1 9 9 10 10 This WP plugin protects posts from being copied (content copy protection). Keep your content safe from unauthorized distribution! … … 99 99 100 100 == Changelog == 101 = 3.6.1 = 102 <ul> 103 <li>Fix security issue related to restore_defaults action inside admin panel</li> 104 <li>Checking with wordpress version 6.6.2</li> 105 </ul> 101 106 = 3.5.9 = 102 107 <ul>
Note: See TracChangeset
for help on using the changeset viewer.