Plugin Directory

Changeset 3414466


Ignore:
Timestamp:
12/08/2025 03:07:34 PM (3 months ago)
Author:
gwin
Message:

Version 2.2.10

Location:
wpadverts/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wpadverts/trunk/addons/contact-form/includes/class-block-details.php

    r3340879 r3414466  
    292292               
    293293                // delete uploaded files ($form)
    294                 $uniqid = sanitize_file_name( adverts_request( "wpadverts-form-upload-uniqid" ) );
    295                 adext_contact_form_delete_tmp_files( $form->get_scheme(), $uniqid );
     294                $request_uniqid = adverts_request( "wpadverts-form-upload-uniqid" );
     295                if(is_string( $request_uniqid ) ) {
     296                    $uniqid = sanitize_file_name( $request_uniqid );
     297                    adext_contact_form_delete_tmp_files( $form->get_scheme(), $uniqid );
     298                }
    296299               
    297300                $bind = array();
  • wpadverts/trunk/languages/wpadverts.pot

    r3406819 r3414466  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Adverts 2.2.9\n"
     5"Project-Id-Version: WP Adverts 2.2.10\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadverts\n"
    7 "POT-Creation-Date: 2025-12-01 12:13:42+00:00\n"
     7"POT-Creation-Date: 2025-12-08 15:06:23+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
     
    7272#: addons/contact-form/contact-form.php:516
    7373#: addons/contact-form/includes/admin-pages.php:62
    74 #: addons/contact-form/includes/class-block-details.php:311
     74#: addons/contact-form/includes/class-block-details.php:314
    7575#: addons/core/includes/admin-pages.php:91
    7676#: addons/core/includes/admin-pages.php:171
     
    134134#: addons/contact-form/contact-form.php:149
    135135#: addons/contact-form/contact-form.php:507
    136 #: addons/contact-form/includes/class-block-details.php:304
     136#: addons/contact-form/includes/class-block-details.php:307
    137137msgid "Your message has been sent."
    138138msgstr ""
  • wpadverts/trunk/readme.txt

    r3406819 r3414466  
    66Requires at least: 5.7
    77Tested up to: 6.9
    8 Stable tag: 2.2.9
     8Stable tag: 2.2.10
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    125125
    126126== Changelog ==
     127
     128= 2.2.10 - 2025-12-08 =
     129
     130* FIXED: Error when submitting a contact form.
    127131
    128132= 2.2.9 - 2025-12-01 =
  • wpadverts/trunk/wpadverts.php

    r3406819 r3414466  
    77 * Text Domain: wpadverts
    88 * Domain Path: /languages
    9  * Version: 2.2.9
     9 * Version: 2.2.10
    1010 *
    1111 * Adverts is free software: you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.