Plugin Directory

Changeset 2073057


Ignore:
Timestamp:
04/23/2019 10:12:19 AM (7 years ago)
Author:
fazae
Message:

1.0.4 - correction wpcf7_submit

Location:
fazacrm-client/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fazacrm-client/trunk/Plugin.php

    r2065535 r2073057  
    1616 * Plugin URI:        https://www.fazae.com/fazacrmclient
    1717 * Description:       Transmet les contacts WordPress dans le FazaCRM.
    18  * Version:           1.0.3
     18 * Version:           1.0.4
    1919 * Author:            Fabrice Piccinali & Léo Coulomb
    2020 * Author URI:        https://www.fazae.com
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define('FAZACRMCLIENT_PLUGIN_NAME_VERSION', '1.0.3');
     36define('FAZACRMCLIENT_PLUGIN_NAME_VERSION', '1.0.4');
    3737
    3838require __DIR__ . "/vendor/autoload.php";
  • fazacrm-client/trunk/readme.txt

    r2065535 r2073057  
    55Requires at least: 4.9.1
    66Tested up to: 5.1
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88Requires PHP: 5.3.3
    99License: GPLv2 or later
  • fazacrm-client/trunk/views/GeneralSettings.php

    r2035322 r2073057  
    152152                <textarea readonly="true" class="fazacrm_codeblock" onfocus="this.select();" rows="33">
    153153                    //Hook sur la validation du formulaire
    154                     add_action( 'wpcf7_sent', 'fazacrmclient_cf7_after_submission',10,1);
    155                     function fazacrmclient_cf7_after_submission($contact_form) {
     154                    add_action( 'wpcf7_submit', 'fazacrmclient_cf7_on_submit',10,1);
     155                    function fazacrmclient_cf7_on_submit($contact_form) {
    156156                        //111 correspond à l'ID de mon formulaire Contact Form 7,
    157157                        //remplacer l'ID de votre formulaire
Note: See TracChangeset for help on using the changeset viewer.