Changeset 3403577
- Timestamp:
- 11/26/2025 04:54:51 PM (2 weeks ago)
- Location:
- filled-in/trunk
- Files:
-
- 3 edited
-
filled_in.php (modified) (1 diff)
-
models/extensions.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
filled-in/trunk/filled_in.php
r3390338 r3403577 5 5 Description: Generic form processor allowing forms to be painlessly processed and aggregated, with numerous options to validate data and perform custom commands 6 6 Author: John Godley 7 Version: 1.9. 57 Version: 1.9.6 8 8 Author URI: http://urbangiraffe.com/ 9 9 License: GPL-3.0 -
filled-in/trunk/models/extensions.php
r3381236 r3403577 78 78 $this->name = esc_sql ($name); 79 79 $this->config = $this->save ($config->data); 80 if (!is_null ($extraconfig)) 81 $this->config = array_merge ($this->config, $extraconfig); 82 83 $config = esc_sql (serialize ($this->config)); 84 return $wpdb->query( 80 81 if ( ! is_null( $extraconfig ) && is_array( $extraconfig ) ) { 82 $this->config = array_merge( $this->config, $extraconfig ); 83 } 84 85 $config = serialize( $this->config ); 86 87 return $wpdb->query( 85 88 $wpdb->prepare( 86 89 "UPDATE {$wpdb->prefix}filled_in_extensions SET name = %s, config = %s WHERE id = %d", -
filled-in/trunk/readme.txt
r3390338 r3403577 53 53 == Changelog == 54 54 55 = 1.9.6 = 56 * Fix module config updating after the SQL fixes 57 55 58 = 1.9.5 = 56 59 * Fix PHP 8.x fatal error with the Checkbox/Radio filter
Note: See TracChangeset
for help on using the changeset viewer.