Plugin Directory

Changeset 3150595


Ignore:
Timestamp:
09/12/2024 08:03:36 AM (16 months ago)
Author:
Tussendoor
Message:

##### 5.1.2

  • Fixed: TinyMCE fired on init causing Headers already sent error.
Location:
open-rdw-kenteken-voertuiginformatie/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • open-rdw-kenteken-voertuiginformatie/trunk/admin/AdminDashboard.php

    r3148441 r3150595  
    4444        add_action('wp_ajax_rdw_save_changes', [$this, 'rdw_save_changes']);
    4545
    46         add_action('init', [$this, 'add_tinymce_form']);
     46        add_action('wp_enqueue_scripts', [$this, 'add_tinymce_form']);
    4747        add_filter('mce_buttons', [$this, 'add_tinymce_button']);
    4848        add_filter('mce_external_plugins', [$this, 'register_tinymce_button']);
     
    235235    public function enqueue_styles()
    236236    {
    237         wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/open-rdw-kenteken-voertuiginformatie-admin.css', []);
    238         // wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/admin/open-rdw-kenteken-voertuiginformatie-admin.css', [], $this->version, 'all');
     237        wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/open-rdw-kenteken-voertuiginformatie-admin.css', [], self::$version, 'all');
    239238    }
    240239
  • open-rdw-kenteken-voertuiginformatie/trunk/config/plugin.php

    r3148441 r3150595  
    2727        'log_source'            => 'tussendoor-rdw',
    2828        'log_context'           => 'tsdRdwContext',
    29         'version'               => '5.1.1',
     29        'version'               => '5.1.2',
    3030        'php_minimum'           => '8.0',
    3131        'php_minimum_id'        => 80000,
  • open-rdw-kenteken-voertuiginformatie/trunk/plugin-gratis-open-rdw-kenteken-voertuiginformatie.php

    r3148441 r3150595  
    1212 * Author URI: https://www.tussendoor.nl
    1313 * Text Domain: tussendoor-rdw
    14  * Version: 5.1.1
     14 * Version: 5.1.2
    1515 * Tested up to: 6.6.1
    1616 * Requires at least: 6.2
     
    2828define('ORK_PLUGIN_PATH', plugins_url('tussendoor-rdw'));
    2929define('ORK_PLUGIN', __DIR__);
    30 define('ORK_VERSION', '5.1.1');
     30define('ORK_VERSION', '5.1.2');
    3131
    3232/**
  • open-rdw-kenteken-voertuiginformatie/trunk/public/js/open-rdw-kenteken-voertuiginformatie-public.js

    r3145953 r3150595  
    6262                formID = inputID;
    6363            }
    64             console.log(formID);
    6564
    6665            $('#' + formID + ' #open_rdw-loading').show();
     
    7069            var kenteken = normalizeLicense($(this).val());
    7170            var data = { action: 'get_open_rdw_data', kenteken: kenteken };
    72 
    73             console.log($(this));
    7471
    7572            $(document).trigger('openrdw:before_data_load', kenteken);
  • open-rdw-kenteken-voertuiginformatie/trunk/readme.txt

    r3148441 r3150595  
    22Contributors: Tussendoor
    33Tags: tussendoor, rdw, kenteken, voertuig, kentekeninformatie
    4 Stable tag: 5.1.1
     4Stable tag: 5.1.2
    55Tested up to: 6.6.1
    66Requires at least: 6.2
     
    4545
    4646### Changelog
     47
     48##### 5.1.2
     49* Fixed: TinyMCE fired on init causing Headers already sent error.
    4750
    4851##### 5.1.1
Note: See TracChangeset for help on using the changeset viewer.