Clicky by Yoast - Version 1.1.2

Version Description

  • Another tiny bugfix on the js outputted.
Download this release

Release Info

Developer joostdevalk
Plugin Icon 128x128 Clicky by Yoast
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

Files changed (2) hide show
  1. clicky.php +4 -17
  2. 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
@@ -412,27 +412,14 @@ function clicky_script() {
412
  }
413
  <?php
414
  }
 
415
  ?>
416
  var clicky_custom_session = {
417
- <?php
418
- if( $options['track_names'] ) {
419
- ?>
420
- username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' ),
421
- <?php
422
- }
423
- /* if ( is_single() ) {
424
- echo "author: '";
425
- the_author();
426
- echo "',";
427
- echo "category: '";
428
- $cat = get_the_category();
429
- echo $cat[0]->name;
430
- echo "'";
431
- } */
432
- ?>
433
  };
434
  </script>
435
  <?php
 
436
 
437
  // Goal tracking
438
  if (is_singular()) {
1
  <?php
2
  /*
3
  Plugin Name: Clicky for WordPress
4
+ Version: 1.1.2
5
  Plugin URI: http://getclicky.com/goodies/#wordpress
6
  Description: Integrates Clicky on your blog!
7
  Author: Joost de Valk
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
  };
420
  </script>
421
  <?php
422
+ }
423
 
424
  // Goal tracking
425
  if (is_singular()) {
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.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.1 =
37
  * Removed tracking of category and author due to complaints. We'll see later if there's a way to add it back in more wisely.
38
 
4
  Tags: analytics, statistics, clicky
5
  Requires at least: 2.8
6
  Tested up to: 3.0
7
+ Stable tag: 1.1.2
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.2 =
37
+ * Another tiny bugfix on the js outputted.
38
+
39
  = 1.1.1 =
40
  * Removed tracking of category and author due to complaints. We'll see later if there's a way to add it back in more wisely.
41