Version Description
- minor mishap with ajax notify signup action. It was in the wrong place!
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.91.1 |
Comparing to | |
See all releases |
Code changes from version 2.91 to 2.91.1
- commentluv.php +3 -3
- readme.txt +4 -1
commentluv.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
-
Version: 2.91
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
@@ -28,7 +28,7 @@
|
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
-
var $version = "2.91";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
@@ -65,6 +65,7 @@
|
|
65 |
$this->plugin_dir = dirname(__FILE__);
|
66 |
if(defined('DOING_AJAX') && DOING_AJAX){
|
67 |
add_action ( 'wp_ajax_removeluv', array (&$this, 'ajax_remove_luv') ); // handle the call to the admin-ajax for removing luv
|
|
|
68 |
add_action ( 'wp_ajax_nopriv_cl_ajax',array(&$this,'do_ajax'));
|
69 |
add_action ( 'wp_ajax_cl_ajax',array(&$this,'do_ajax'));
|
70 |
} else {
|
@@ -74,7 +75,6 @@
|
|
74 |
add_action ( 'admin_menu', array (&$this, 'admin_menu' ) ); // to setup menu link for settings page
|
75 |
add_action ( 'admin_print_scripts-settings_page_commentluv-options', array(&$this,'add_settings_page_script')); // script for settings page ajax function
|
76 |
add_action ( 'admin_print_styles-settings_page_commentluv-options', array(&$this,'add_settings_page_style')); // script for settings page ajax function
|
77 |
-
add_action ( 'wp_ajax_notify_signup', array(&$this,'notify_signup')); // ajax handler for settings page subscribe button
|
78 |
add_action ( 'init', array(&$this,'detect_useragent'));
|
79 |
}
|
80 |
// filters
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
+
Version: 2.91.1
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
+
var $version = "2.91.1";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
65 |
$this->plugin_dir = dirname(__FILE__);
|
66 |
if(defined('DOING_AJAX') && DOING_AJAX){
|
67 |
add_action ( 'wp_ajax_removeluv', array (&$this, 'ajax_remove_luv') ); // handle the call to the admin-ajax for removing luv
|
68 |
+
add_action ( 'wp_ajax_notify_signup', array(&$this,'notify_signup')); // ajax handler for settings page subscribe button
|
69 |
add_action ( 'wp_ajax_nopriv_cl_ajax',array(&$this,'do_ajax'));
|
70 |
add_action ( 'wp_ajax_cl_ajax',array(&$this,'do_ajax'));
|
71 |
} else {
|
75 |
add_action ( 'admin_menu', array (&$this, 'admin_menu' ) ); // to setup menu link for settings page
|
76 |
add_action ( 'admin_print_scripts-settings_page_commentluv-options', array(&$this,'add_settings_page_script')); // script for settings page ajax function
|
77 |
add_action ( 'admin_print_styles-settings_page_commentluv-options', array(&$this,'add_settings_page_style')); // script for settings page ajax function
|
|
|
78 |
add_action ( 'init', array(&$this,'detect_useragent'));
|
79 |
}
|
80 |
// filters
|
readme.txt
CHANGED
@@ -85,6 +85,9 @@ Please see the videos in the settings page for explanations of how they work.
|
|
85 |
|
86 |
== ChangeLog ==
|
87 |
|
|
|
|
|
|
|
88 |
= 2.91 =
|
89 |
* new changes implimented for author/category urls
|
90 |
* remove ugly red box for upgrade notice. replace with calming yellow one with a convenient link to update the plugin.
|
@@ -346,7 +349,7 @@ Please see the videos in the settings page for explanations of how they work.
|
|
346 |
|
347 |
== Upgrade Notice ==
|
348 |
|
349 |
-
= 2.1 =
|
350 |
|
351 |
Lots of good error reporting stuff
|
352 |
added efficiency to ajax actions
|
85 |
|
86 |
== ChangeLog ==
|
87 |
|
88 |
+
= 2.91.1 =
|
89 |
+
* minor mishap with ajax notify signup action. It was in the wrong place!
|
90 |
+
|
91 |
= 2.91 =
|
92 |
* new changes implimented for author/category urls
|
93 |
* remove ugly red box for upgrade notice. replace with calming yellow one with a convenient link to update the plugin.
|
349 |
|
350 |
== Upgrade Notice ==
|
351 |
|
352 |
+
= 2.91.1 =
|
353 |
|
354 |
Lots of good error reporting stuff
|
355 |
added efficiency to ajax actions
|