Plugin Directory

Changeset 3403577


Ignore:
Timestamp:
11/26/2025 04:54:51 PM (2 weeks ago)
Author:
FolioVision
Message:

1.9.6: Fix module config updating after the SQL fixes

Location:
filled-in/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • filled-in/trunk/filled_in.php

    r3390338 r3403577  
    55Description: Generic form processor allowing forms to be painlessly processed and aggregated, with numerous options to validate data and perform custom commands
    66Author: John Godley
    7 Version: 1.9.5
     7Version: 1.9.6
    88Author URI: http://urbangiraffe.com/
    99License: GPL-3.0
  • filled-in/trunk/models/extensions.php

    r3381236 r3403577  
    7878        $this->name   = esc_sql ($name);
    7979        $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(
    8588            $wpdb->prepare(
    8689                "UPDATE {$wpdb->prefix}filled_in_extensions SET name = %s, config = %s WHERE id = %d",
  • filled-in/trunk/readme.txt

    r3390338 r3403577  
    5353== Changelog ==
    5454
     55= 1.9.6 =
     56* Fix module config updating after the SQL fixes
     57
    5558= 1.9.5 =
    5659* Fix PHP 8.x fatal error with the Checkbox/Radio filter
Note: See TracChangeset for help on using the changeset viewer.