No Right Click Images Plugin - Version 2.2

Version Description

  • Changed the default so that logged in users cannot copy images. Too many people tested the plugin without checking the settings and assumed that the plugin was broken. They did not read the documentation, try the settings, or check the WordPress forums. I am sorry that I had to do this, but people were indicating on the WordPress plugin page that it didn't work.

=

Download this release

Release Info

Developer kpgraham
Plugin Icon wp plugin No Right Click Images Plugin
Version 2.2
Comparing to
See all releases

Code changes from version 2.1 to 2.2

no-right-click-images-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: No Right Click Images Plugin
4
  Plugin URI: http://www.BlogsEye.com/
5
  Description: Uses Javascript to prevent right clicking of images to help keep leaches from copying images
6
- Version: 2.1
7
  Author: Keith P. Graham
8
  Author URI: http://www.BlogsEye.com/
9
 
@@ -25,7 +25,7 @@ function kpg_no_rc_img_fixup() {
25
  if (empty($options)||!is_array($options)) $options=array();
26
  $replace='N';
27
  $drag='Y';
28
- $allowforlogged='Y';
29
  extract($options);
30
  if ($replace!='Y') $replace='N';
31
  if ($drag!='Y') $drag='N';
@@ -46,7 +46,7 @@ function kpg_no_rc_img_control() {
46
  if (empty($options)||!is_array($options)) $options=array();
47
  $replace='N';
48
  $drag='Y';
49
- $allowforlogged='Y';
50
  extract($options);
51
  if ($replace!='Y') $replace='N';
52
  if (empty($drag)) $drag='Y';
3
  Plugin Name: No Right Click Images Plugin
4
  Plugin URI: http://www.BlogsEye.com/
5
  Description: Uses Javascript to prevent right clicking of images to help keep leaches from copying images
6
+ Version: 2.2
7
  Author: Keith P. Graham
8
  Author URI: http://www.BlogsEye.com/
9
 
25
  if (empty($options)||!is_array($options)) $options=array();
26
  $replace='N';
27
  $drag='Y';
28
+ $allowforlogged='N';
29
  extract($options);
30
  if ($replace!='Y') $replace='N';
31
  if ($drag!='Y') $drag='N';
46
  if (empty($options)||!is_array($options)) $options=array();
47
  $replace='N';
48
  $drag='Y';
49
+ $allowforlogged='N';
50
  extract($options);
51
  if ($replace!='Y') $replace='N';
52
  if (empty($drag)) $drag='Y';
no-right-click-images.js CHANGED
@@ -1,6 +1,6 @@
1
  /**************************************************************************
2
  This javascript is used by the no-right-click-images plugin for wordpress.
3
- Version 2.1
4
  Please give credit as no-right-click-images.js by Keith P. Graham
5
  http://www.blogseye.com
6
  **************************************************************************/
1
  /**************************************************************************
2
  This javascript is used by the no-right-click-images plugin for wordpress.
3
+ Version 2.2
4
  Please give credit as no-right-click-images.js by Keith P. Graham
5
  http://www.blogseye.com
6
  **************************************************************************/
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Tags: images, image, right click, stealing
3
  Donate link: http://www.amazon.com/gp/product/1456336584?ie=UTF8&tag=thenewjt30page&linkCode=as2&camp=1789&creative=390957&creativeASIN=1456336584
4
  Requires at least: 2.8
5
- Tested up to: 3.4beta
6
  Contributors: Keith Graham
7
- Stable tag: 2.1
8
 
9
  Disables right click context menu on images to help deter leeches from glomming images.
10
 
@@ -43,6 +43,9 @@ It is impossible to keep people from stealing images that appear in web pages, b
43
  = 2.1 =
44
  * Added option so that logged in users are allowed to copy images. Disables the plugin for logged in users. Captured copy to clipboard events to prevent another way of copying in some browsers. Fixed a problem in image replacement that prevented an image from being restored when another image was right clicked before the image times out.
45
 
 
 
 
46
  == Support ==
47
  This plugin is free and I expect nothing in return. Please rate the plugin at http://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/.
48
  If you wish to support my programming, please buy my Science Fiction book. The Kindle version is less thana buck.
2
  Tags: images, image, right click, stealing
3
  Donate link: http://www.amazon.com/gp/product/1456336584?ie=UTF8&tag=thenewjt30page&linkCode=as2&camp=1789&creative=390957&creativeASIN=1456336584
4
  Requires at least: 2.8
5
+ Tested up to: 3.4
6
  Contributors: Keith Graham
7
+ Stable tag: 2.2
8
 
9
  Disables right click context menu on images to help deter leeches from glomming images.
10
 
43
  = 2.1 =
44
  * Added option so that logged in users are allowed to copy images. Disables the plugin for logged in users. Captured copy to clipboard events to prevent another way of copying in some browsers. Fixed a problem in image replacement that prevented an image from being restored when another image was right clicked before the image times out.
45
 
46
+ = 2.2 =
47
+ * Changed the default so that logged in users cannot copy images. Too many people tested the plugin without checking the settings and assumed that the plugin was broken. They did not read the documentation, try the settings, or check the WordPress forums. I am sorry that I had to do this, but people were indicating on the WordPress plugin page that it didn't work.
48
+
49
  == Support ==
50
  This plugin is free and I expect nothing in return. Please rate the plugin at http://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/.
51
  If you wish to support my programming, please buy my Science Fiction book. The Kindle version is less thana buck.