Version Description
- Fixed bug that would cause tracking not to work if commenter name tracking was not enabled.
Download this release
Release Info
| Developer | joostdevalk |
| Plugin | |
| Version | 1.1.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.2 to 1.1.3
- clicky.php +2 -6
- readme.txt +4 -1
clicky.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Clicky for WordPress
|
| 4 |
-
Version: 1.1.
|
| 5 |
Plugin URI: http://getclicky.com/goodies/#wordpress
|
| 6 |
Description: Integrates Clicky on your blog!
|
| 7 |
Author: Joost de Valk
|
|
@@ -397,11 +397,11 @@ function clicky_script() {
|
|
| 397 |
// Branding
|
| 398 |
?>
|
| 399 |
<!-- Clicky Web Analytics - http://getclicky.com, WordPress Plugin by Yoast - http://yoast.com -->
|
| 400 |
-
<script type='text/javascript'>
|
| 401 |
<?php
|
| 402 |
// Track commenter name if track_names is true
|
| 403 |
if( $options['track_names'] ) {
|
| 404 |
?>
|
|
|
|
| 405 |
function clicky_gc( name ) {
|
| 406 |
var ca = document.cookie.split(';');
|
| 407 |
for( var i in ca ) {
|
|
@@ -410,10 +410,6 @@ function clicky_script() {
|
|
| 410 |
}
|
| 411 |
return '';
|
| 412 |
}
|
| 413 |
-
<?php
|
| 414 |
-
}
|
| 415 |
-
if( $options['track_names'] ) {
|
| 416 |
-
?>
|
| 417 |
var clicky_custom_session = {
|
| 418 |
username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' )
|
| 419 |
};
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Clicky for WordPress
|
| 4 |
+
Version: 1.1.3
|
| 5 |
Plugin URI: http://getclicky.com/goodies/#wordpress
|
| 6 |
Description: Integrates Clicky on your blog!
|
| 7 |
Author: Joost de Valk
|
| 397 |
// Branding
|
| 398 |
?>
|
| 399 |
<!-- Clicky Web Analytics - http://getclicky.com, WordPress Plugin by Yoast - http://yoast.com -->
|
|
|
|
| 400 |
<?php
|
| 401 |
// Track commenter name if track_names is true
|
| 402 |
if( $options['track_names'] ) {
|
| 403 |
?>
|
| 404 |
+
<script type='text/javascript'>
|
| 405 |
function clicky_gc( name ) {
|
| 406 |
var ca = document.cookie.split(';');
|
| 407 |
for( var i in ca ) {
|
| 410 |
}
|
| 411 |
return '';
|
| 412 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 413 |
var clicky_custom_session = {
|
| 414 |
username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' )
|
| 415 |
};
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://yoast.com/
|
|
| 4 |
Tags: analytics, statistics, clicky
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.0
|
| 7 |
-
Stable tag: 1.1.
|
| 8 |
|
| 9 |
Integrates the Clicky web analytics service and optionally the Clicky.me short URL service into your blog.
|
| 10 |
|
|
@@ -33,6 +33,9 @@ Integrates the Clicky web analytics service and optionally the Clicky.me short U
|
|
| 33 |
|
| 34 |
== Changelog ==
|
| 35 |
|
|
|
|
|
|
|
|
|
|
| 36 |
= 1.1.2 =
|
| 37 |
* Another tiny bugfix on the js outputted.
|
| 38 |
|
| 4 |
Tags: analytics, statistics, clicky
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.0
|
| 7 |
+
Stable tag: 1.1.3
|
| 8 |
|
| 9 |
Integrates the Clicky web analytics service and optionally the Clicky.me short URL service into your blog.
|
| 10 |
|
| 33 |
|
| 34 |
== Changelog ==
|
| 35 |
|
| 36 |
+
= 1.1.3 =
|
| 37 |
+
* Fixed bug that would cause tracking not to work if commenter name tracking was not enabled.
|
| 38 |
+
|
| 39 |
= 1.1.2 =
|
| 40 |
* Another tiny bugfix on the js outputted.
|
| 41 |
|
