@@ -67,6 +67,11 @@ The [FAQ section](https://github.com/cabrerahector/wordpress-popular-posts/wiki/
4. WordPress Popular Posts Stats panel.
== Changelog ==
= 3.3.3 =
- Fixes potential XSS exploit in WPP's admin dashboard.
- Adds filter to set which post types should be tracked by WPP ([details](https://github.com/cabrerahector/wordpress-popular-posts/wiki/3.-Filters#wpp_trackable_post_types)).
- Adds ability to select first attached image as thumbnail source (thanks, [@serglopatin](https://github.com/serglopatin)!)
= 3.3.2 =
- Fixes warning message: 'stream does not support seeking in...'
- Removes excerpt HTML encoding.
...
...
@@ -119,29 +124,6 @@ The [FAQ section](https://github.com/cabrerahector/wordpress-popular-posts/wiki/
* Fixes missing HTML decoding for custom HTML in widget.
* Puts LIMIT clause back to the outer query.
= 3.2.0 =
* Adds check for jQuery.
* Fixes invalid parameter in htmlspecialchars().
* Switches AJAX update to POST method.
* Removes href attribute from link when popular post is viewed.
* Removes unnecesary ORDER BY clause in views/comments subquery.
* Fixes Javascript console not working under IE8 (thanks, @[raphaelsaunier](https://github.com/raphaelsaunier)!)
* Fixes WPML compatibility bug storing post IDs as 0.
* Removes wpp-upload.js since it was no longer in use.
<option<?phpif($this->user_settings['stats']['order_by']=="views"){?>selected="selected"<?php}?>value="views"><?php_e("Order by views",$this->plugin_slug);?></option>
<option<?phpif($this->user_settings['stats']['order_by']=="avg"){?>selected="selected"<?php}?>value="avg"><?php_e("Order by avg. daily views",$this->plugin_slug);?></option>
<labelfor="stats_freshness"><inputtype="checkbox"class="checkbox"<?phpecho($this->user_settings['stats']['freshness'])?'checked="checked"':'';?>id="stats_freshness"name="stats_freshness"/><?php_e('Display only posts published within the selected Time Range',$this->plugin_slug);?></label>
<option<?phpif($this->user_settings['tools']['thumbnail']['source']=="first_image"){?>selected="selected"<?php}?>value="first_image"><?php_e("First image on post",$this->plugin_slug);?></option>
<option<?phpif($this->user_settings['tools']['log']['limit']==1){?>selected="selected"<?php}?>value="1"><?php_e("Keep data for",$this->plugin_slug);?></option>
<pclass="description"<?phpecho($this->user_settings['tools']['log']['limit']==0)?' style="display:none;"':'';?>><?php_e("Data from entries that haven't been viewed within the specified time frame will be automatically discarded",$this->plugin_slug);?>.</p>