Changeset 545369
- Timestamp:
- 05/17/2012 01:22:14 PM (14 years ago)
- Location:
- wassup/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wassup.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wassup/trunk/readme.txt
r527146 r545369 1 === WassUp Real Time Anal itycs ===1 === WassUp Real Time Analytics === 2 2 Contributors: michelem, helened 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=michele%40befree%2eit&item_name=WassUp&no_shipping=0&no_note=1&tax=0¤cy_code=EUR&lc=IT&bn=PP%2dDonationsBF&charset=UTF%2d8 … … 5 5 Requires at least: 2.2 6 6 Tested up to: 3.2.1 7 Stable tag: 1.8.3 7 Stable tag: 1.8.3.1 8 8 9 9 Analyze your visitors traffic with real-time statistics, a lot of chronological information, charts, a sidebar widget. … … 144 144 145 145 == Changelog == 146 147 = 1.8.3.1 = 148 = Urgent bugfix = 149 * fixed security issue: Change the UserAgent of the browser to include html tags, and by accessing a WordPress blog with WassUp installed, the tag is executed when going to "View Details" from the administrative page and viewing the access logs. 146 150 147 151 = 1.8.3 = -
wassup/trunk/wassup.php
r444137 r545369 1 1 <?php 2 2 /* 3 Plugin Name: WassUp 3 Plugin Name: WassUp Real Time Analytics 4 4 Plugin URI: http://www.wpwp.org 5 5 Description: Analyze your visitors traffic with real-time stats, charts, and a lot of chronological information. Includes a sidebar widget of current online visitors and other statistics and an admin dashboard widget with chart. For Wordpress 2.2 or higher. Caution: don't upgrade when your site is busy! 6 Version: 1.8.3 6 Version: 1.8.3.1 7 7 Author: Michele Marcucci, Helene Duncker 8 8 Author URI: http://www.michelem.org/ … … 24 24 //wassup globals & constants 25 25 global $wp_version, $current_user, $user_level, $wassup_options; 26 $wassupversion="1.8.3 ";26 $wassupversion="1.8.3.1"; 27 27 $wassup_cookie_value=""; 28 28 $wdebug_mode=false; //turn on debugging (global)...Use cautiously! Will display errors from all plugins, not just WassUp … … 1556 1556 echo __("Page","wassup").': <span class="raw">'.$rk->searchpage.'</span>';?></li><?php 1557 1557 } ?> 1558 <li><?php echo __("User Agent","wassup").': <span class="raw">'. attribute_escape(htmlspecialchars(html_entity_decode($rk->agent))).'</span>'; ?></li><?php1558 <li><?php echo __("User Agent","wassup").': <span class="raw">'.strip_tags(attribute_escape(htmlspecialchars(html_entity_decode($rk->agent)))).'</span>'; ?></li><?php 1559 1559 if (empty($rk->spider) || $rk->browser != "") { 1560 1560 echo "\n"; ?> … … 1702 1702 //hidden user agent string 1703 1703 ?><div style="display: none;" class="togglenavi naviagent<?php echo $rk->id ?>"><ul class="useragent"> 1704 <li class="useragent"><?php _e('User Agent','wassup'); ?>: <strong><?php print $rk->agent; ?></strong></li>1704 <li class="useragent"><?php _e('User Agent','wassup'); ?>: <strong><?php print strip_tags($rk->agent); ?></strong></li> 1705 1705 </ul></div> 1706 1706 <?php
Note: See TracChangeset
for help on using the changeset viewer.