Changeset 3393150
- Timestamp:
- 11/10/2025 07:08:30 PM (5 months ago)
- Location:
- logtivity
- Files:
-
- 10 edited
- 1 copied
-
tags/3.3.4 (copied) (copied from logtivity/trunk)
-
tags/3.3.4/Loggers/Core/Logtivity_Core.php (modified) (1 diff)
-
tags/3.3.4/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php (modified) (1 diff)
-
tags/3.3.4/functions/functions.php (modified) (1 diff)
-
tags/3.3.4/logtivity.php (modified) (2 diffs)
-
tags/3.3.4/readme.txt (modified) (2 diffs)
-
trunk/Loggers/Core/Logtivity_Core.php (modified) (1 diff)
-
trunk/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php (modified) (1 diff)
-
trunk/functions/functions.php (modified) (1 diff)
-
trunk/logtivity.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
logtivity/tags/3.3.4/Loggers/Core/Logtivity_Core.php
r3382713 r3393150 232 232 $this->getRequestMethod() != 'GET' 233 233 && is_admin() 234 && $oldValue != $newValue234 && $oldValue !== $newValue 235 235 && $this->ignoreOption($option) == false 236 236 && get_option('logtivity_enable_options_table_logging') -
logtivity/tags/3.3.4/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php
r3369912 r3393150 252 252 public function siteDeactivated() 253 253 { 254 if (!wp_verify_nonce($_GET['_wpnonce'] , 'edd_deactivate_site_nonce')) {254 if (!wp_verify_nonce($_GET['_wpnonce'] ?? null, 'edd_deactivate_site_nonce')) { 255 255 return; 256 256 } -
logtivity/tags/3.3.4/functions/functions.php
r3389065 r3393150 204 204 function logtivity_logger_value($value): string 205 205 { 206 $value = is_string($value) && is_serialized($value) ?unserialize($value) : $value;206 $value = is_string($value) ? maybe_unserialize($value) : $value; 207 207 208 208 switch (gettype($value)) { -
logtivity/tags/3.3.4/logtivity.php
r3389065 r3393150 6 6 * Description: Record activity logs and errors logs across all your WordPress sites. 7 7 * Author: Logtivity 8 * Version: 3.3. 38 * Version: 3.3.4 9 9 * Text Domain: logtivity 10 10 * Requires at least: 4.7 … … 45 45 * @var string 46 46 */ 47 protected string $version = '3.3. 3';47 protected string $version = '3.3.4'; 48 48 49 49 /** -
logtivity/tags/3.3.4/readme.txt
r3389065 r3393150 5 5 Requires at least: 6.6 6 6 Tested up to: 6.8 7 Stable tag: 3.3. 37 Stable tag: 3.3.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 262 262 263 263 == Changelog == 264 265 = 3.3.4 10 Nov 2025 = 266 * Fix: "Nesting Level" error on Woo Commerce option updates 264 267 265 268 = 3.3.3 - 03 Nov 2025 = -
logtivity/trunk/Loggers/Core/Logtivity_Core.php
r3382713 r3393150 232 232 $this->getRequestMethod() != 'GET' 233 233 && is_admin() 234 && $oldValue != $newValue234 && $oldValue !== $newValue 235 235 && $this->ignoreOption($option) == false 236 236 && get_option('logtivity_enable_options_table_logging') -
logtivity/trunk/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php
r3369912 r3393150 252 252 public function siteDeactivated() 253 253 { 254 if (!wp_verify_nonce($_GET['_wpnonce'] , 'edd_deactivate_site_nonce')) {254 if (!wp_verify_nonce($_GET['_wpnonce'] ?? null, 'edd_deactivate_site_nonce')) { 255 255 return; 256 256 } -
logtivity/trunk/functions/functions.php
r3389065 r3393150 204 204 function logtivity_logger_value($value): string 205 205 { 206 $value = is_string($value) && is_serialized($value) ?unserialize($value) : $value;206 $value = is_string($value) ? maybe_unserialize($value) : $value; 207 207 208 208 switch (gettype($value)) { -
logtivity/trunk/logtivity.php
r3389065 r3393150 6 6 * Description: Record activity logs and errors logs across all your WordPress sites. 7 7 * Author: Logtivity 8 * Version: 3.3. 38 * Version: 3.3.4 9 9 * Text Domain: logtivity 10 10 * Requires at least: 4.7 … … 45 45 * @var string 46 46 */ 47 protected string $version = '3.3. 3';47 protected string $version = '3.3.4'; 48 48 49 49 /** -
logtivity/trunk/readme.txt
r3389065 r3393150 5 5 Requires at least: 6.6 6 6 Tested up to: 6.8 7 Stable tag: 3.3. 37 Stable tag: 3.3.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 262 262 263 263 == Changelog == 264 265 = 3.3.4 10 Nov 2025 = 266 * Fix: "Nesting Level" error on Woo Commerce option updates 264 267 265 268 = 3.3.3 - 03 Nov 2025 =
Note: See TracChangeset
for help on using the changeset viewer.