Version Description
- Minor bugfix.
Download this release
Release Info
Developer | joostdevalk |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2 to 4.2.1
- readme.txt +5 -1
- yst_plugin_tools.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://yoast.com/donate/
|
|
4 |
Tags: analytics, google analytics, statistics, tracking, stats, google
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 4.2
|
8 |
|
9 |
Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.
|
10 |
|
@@ -59,6 +59,10 @@ This section describes how to install the plugin and get it working.
|
|
59 |
|
60 |
== Changelog ==
|
61 |
|
|
|
|
|
|
|
|
|
62 |
= 4.2 =
|
63 |
|
64 |
* Google Authentication now happens using OAuth. The requests have become signed as an extra security measure and tokens have become more stable, as opposed to the prior tokens used with AuthSub.
|
4 |
Tags: analytics, google analytics, statistics, tracking, stats, google
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 4.2.1
|
8 |
|
9 |
Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.
|
10 |
|
59 |
|
60 |
== Changelog ==
|
61 |
|
62 |
+
= 4.2.1 =
|
63 |
+
|
64 |
+
* Minor bugfix.
|
65 |
+
|
66 |
= 4.2 =
|
67 |
|
68 |
* Google Authentication now happens using OAuth. The requests have become signed as an extra security measure and tokens have become more stable, as opposed to the prior tokens used with AuthSub.
|
yst_plugin_tools.php
CHANGED
@@ -235,7 +235,7 @@ if (!class_exists('Yoast_GA_Plugin_Admin')) {
|
|
235 |
require_once(ABSPATH.WPINC.'/rss.php');
|
236 |
if ( $rss = fetch_rss( 'http://yoast.com/feed/' ) ) {
|
237 |
echo '<div class="rss-widget">';
|
238 |
-
echo '<a href="http://yoast.com/" title="Go to Yoast.com"><img src="'.plugin_dir_url().'images/yoast-logo-rss.png" class="alignright" alt="Yoast"/></a>';
|
239 |
echo '<ul>';
|
240 |
$rss->items = array_slice( $rss->items, 0, 3 );
|
241 |
foreach ( (array) $rss->items as $item ) {
|
@@ -249,7 +249,7 @@ if (!class_exists('Yoast_GA_Plugin_Admin')) {
|
|
249 |
echo '<div style="border-top: 1px solid #ddd; padding-top: 10px; text-align:center;">';
|
250 |
echo '<a href="http://feeds2.feedburner.com/joostdevalk"><img src="'.get_bloginfo('wpurl').'/wp-includes/images/rss.png" alt=""/> Subscribe with RSS</a>';
|
251 |
echo ' ';
|
252 |
-
echo '<a href="http://yoast.com/email-blog-updates/"><img src="'.plugin_dir_url().'images/email_sub.png" alt=""/> '.__( 'Subscribe by email', 'gawp_yoast' ).'</a>';
|
253 |
echo '<form class="alignright" method="post"><input type="hidden" name="yoast_removedbwidget" value="true"/><input title="'.__( 'Remove this widget from all users dashboards', 'gawp_yoast' ).'" type="submit" value="X"/></form>';
|
254 |
echo '</div>';
|
255 |
echo '</div>';
|
235 |
require_once(ABSPATH.WPINC.'/rss.php');
|
236 |
if ( $rss = fetch_rss( 'http://yoast.com/feed/' ) ) {
|
237 |
echo '<div class="rss-widget">';
|
238 |
+
echo '<a href="http://yoast.com/" title="Go to Yoast.com"><img src="'.plugin_dir_url( __FILE__ ).'images/yoast-logo-rss.png" class="alignright" alt="Yoast"/></a>';
|
239 |
echo '<ul>';
|
240 |
$rss->items = array_slice( $rss->items, 0, 3 );
|
241 |
foreach ( (array) $rss->items as $item ) {
|
249 |
echo '<div style="border-top: 1px solid #ddd; padding-top: 10px; text-align:center;">';
|
250 |
echo '<a href="http://feeds2.feedburner.com/joostdevalk"><img src="'.get_bloginfo('wpurl').'/wp-includes/images/rss.png" alt=""/> Subscribe with RSS</a>';
|
251 |
echo ' ';
|
252 |
+
echo '<a href="http://yoast.com/email-blog-updates/"><img src="'.plugin_dir_url( __FILE__ ).'images/email_sub.png" alt=""/> '.__( 'Subscribe by email', 'gawp_yoast' ).'</a>';
|
253 |
echo '<form class="alignright" method="post"><input type="hidden" name="yoast_removedbwidget" value="true"/><input title="'.__( 'Remove this widget from all users dashboards', 'gawp_yoast' ).'" type="submit" value="X"/></form>';
|
254 |
echo '</div>';
|
255 |
echo '</div>';
|