Changeset 3186164 for wp-slimstat
- Timestamp:
- 11/12/2024 05:01:52 AM (17 months ago)
- Location:
- wp-slimstat
- Files:
-
- 10 edited
- 1 copied
-
tags/5.2.9 (copied) (copied from wp-slimstat/trunk)
-
tags/5.2.9/CHANGELOG.md (modified) (1 diff)
-
tags/5.2.9/admin/view/wp-slimstat-reports.php (modified) (1 diff)
-
tags/5.2.9/readme.txt (modified) (2 diffs)
-
tags/5.2.9/src/Constants.php (modified) (1 diff)
-
tags/5.2.9/wp-slimstat.php (modified) (3 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/admin/view/wp-slimstat-reports.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Constants.php (modified) (1 diff)
-
trunk/wp-slimstat.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-slimstat/tags/5.2.9/CHANGELOG.md
r3170259 r3186164 1 = 5.2.9 - 2024-11-12 = 2 - **Enhancement**: Ensured compatibility with WordPress version 6.7. 3 - **Fix**: Resolved the Top Referring Domain Issue. 4 1 5 = 5.2.8 - 16.10.2024 = 2 6 * Fix: UTF-8 characters are now preserved during sanitization. -
wp-slimstat/tags/5.2.9/admin/view/wp-slimstat-reports.php
r3167048 r3186164 985 985 986 986 // Backward compatibility 987 if (! $all_results) {987 if (!is_array($all_results)) { 988 988 $all_results = array(); 989 989 } -
wp-slimstat/tags/5.2.9/readme.txt
r3170259 r3186164 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.7 8 Stable tag: 5.2. 88 Stable tag: 5.2.9 9 9 License: GPL-2.0+ 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 = 5.2.8 - 16.10.2024 = 69 * Fix: UTF-8 characters are now preserved during sanitization. 68 = 5.2.9 - 2024-11-12 = 69 - **Enhancement**: Ensured compatibility with WordPress version 6.7. 70 - **Fix**: Resolved the Top Referring Domain Issue. 70 71 71 72 [See changelog for all versions](https://raw.githubusercontent.com/wp-slimstat/wp-slimstat/master/CHANGELOG.md). -
wp-slimstat/tags/5.2.9/src/Constants.php
r3000282 r3186164 16 16 define('SLIMSTAT_ANALYTICS_DIR', plugin_dir_path(dirname(__FILE__))); 17 17 18 // Get plugin Data.19 $plugin_data = get_plugin_data(SLIMSTAT_ANALYTICS_DIR . 'wp-slimstat.php');20 21 18 // Set another useful Plugin defines. 22 define('SLIMSTAT_ANALYTICS_VERSION', $plugin_data['Version']);23 19 define('SLIMSTAT_ANALYTICS_ADMIN_URL', get_admin_url()); 24 20 define('SLIMSTAT_ANALYTICS_SITE', 'https://wp-slimstat.com'); -
wp-slimstat/tags/5.2.9/wp-slimstat.php
r3170259 r3186164 4 4 * Plugin URI: https://wp-slimstat.com/ 5 5 * Description: The leading web analytics plugin for WordPress 6 * Version: 5.2. 86 * Version: 5.2.9 7 7 * Author: Jason Crouse, VeronaLabs 8 8 * Text Domain: wp-slimstat … … 23 23 return; 24 24 } 25 26 // Set the plugin version 27 define('SLIMSTAT_ANALYTICS_VERSION', '5.2.9'); 25 28 26 29 // include the autoloader if it exists … … 476 479 477 480 // Referrer URL 478 if ( !isset(self::$stat['referer']) && !empty($_SERVER['HTTP_REFERER'])) {481 if (empty(self::$stat['referer']) && !empty($_SERVER['HTTP_REFERER'])) { 479 482 self::$stat['referer'] = sanitize_url(wp_unslash($_SERVER['HTTP_REFERER'])); 480 483 } -
wp-slimstat/trunk/CHANGELOG.md
r3170259 r3186164 1 = 5.2.9 - 2024-11-12 = 2 - **Enhancement**: Ensured compatibility with WordPress version 6.7. 3 - **Fix**: Resolved the Top Referring Domain Issue. 4 1 5 = 5.2.8 - 16.10.2024 = 2 6 * Fix: UTF-8 characters are now preserved during sanitization. -
wp-slimstat/trunk/admin/view/wp-slimstat-reports.php
r3167048 r3186164 985 985 986 986 // Backward compatibility 987 if (! $all_results) {987 if (!is_array($all_results)) { 988 988 $all_results = array(); 989 989 } -
wp-slimstat/trunk/readme.txt
r3170259 r3186164 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.7 8 Stable tag: 5.2. 88 Stable tag: 5.2.9 9 9 License: GPL-2.0+ 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 = 5.2.8 - 16.10.2024 = 69 * Fix: UTF-8 characters are now preserved during sanitization. 68 = 5.2.9 - 2024-11-12 = 69 - **Enhancement**: Ensured compatibility with WordPress version 6.7. 70 - **Fix**: Resolved the Top Referring Domain Issue. 70 71 71 72 [See changelog for all versions](https://raw.githubusercontent.com/wp-slimstat/wp-slimstat/master/CHANGELOG.md). -
wp-slimstat/trunk/src/Constants.php
r3000282 r3186164 16 16 define('SLIMSTAT_ANALYTICS_DIR', plugin_dir_path(dirname(__FILE__))); 17 17 18 // Get plugin Data.19 $plugin_data = get_plugin_data(SLIMSTAT_ANALYTICS_DIR . 'wp-slimstat.php');20 21 18 // Set another useful Plugin defines. 22 define('SLIMSTAT_ANALYTICS_VERSION', $plugin_data['Version']);23 19 define('SLIMSTAT_ANALYTICS_ADMIN_URL', get_admin_url()); 24 20 define('SLIMSTAT_ANALYTICS_SITE', 'https://wp-slimstat.com'); -
wp-slimstat/trunk/wp-slimstat.php
r3170259 r3186164 4 4 * Plugin URI: https://wp-slimstat.com/ 5 5 * Description: The leading web analytics plugin for WordPress 6 * Version: 5.2. 86 * Version: 5.2.9 7 7 * Author: Jason Crouse, VeronaLabs 8 8 * Text Domain: wp-slimstat … … 23 23 return; 24 24 } 25 26 // Set the plugin version 27 define('SLIMSTAT_ANALYTICS_VERSION', '5.2.9'); 25 28 26 29 // include the autoloader if it exists … … 476 479 477 480 // Referrer URL 478 if ( !isset(self::$stat['referer']) && !empty($_SERVER['HTTP_REFERER'])) {481 if (empty(self::$stat['referer']) && !empty($_SERVER['HTTP_REFERER'])) { 479 482 self::$stat['referer'] = sanitize_url(wp_unslash($_SERVER['HTTP_REFERER'])); 480 483 }
Note: See TracChangeset
for help on using the changeset viewer.