Plugin Directory

Changeset 2769770


Ignore:
Timestamp:
08/12/2022 01:31:16 PM (4 years ago)
Author:
bidass
Message:

Last update

Location:
dastra/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dastra/trunk/dastra.php

    r2769757 r2769770  
    22/**
    33 * @package Dastra
    4  * @version 0.1.4
     4 * @version 0.1.5
    55 * Plugin Name: Dastra
    66 * Plugin URI: http://wordpress.org/plugins/dastra/
    77 * Description: Dastra is a cookie consent management platform
    88 * Author: Dastra
    9  * Version: 0.1.4
     9 * Version: 0.1.5
    1010 * Author URI: https://dastra.eu
    1111 *
     
    8989}
    9090
    91 add_action('wp_body_open', 'dastra_hook_head', 1);
     91add_action('wp_footer', 'dastra_hook_footer', 1);
    9292add_action('admin_enqueue_scripts', 'dastra_enqueue_stylesheet');
    9393
     
    131131
    132132
    133 function dastra_hook_head() {
     133function dastra_hook_footer() {
    134134  $widget_id = get_option('widget_id');
    135135  $public_key = get_option('public_key');
     
    149149  }
    150150 
    151   return $output;
     151  echo $output;
    152152}
  • dastra/trunk/readme.txt

    r2769750 r2769770  
    55Requires at least: 5.0.2
    66Tested up to: 6.0.1
    7 Stable tag: 0.1.3
     7Stable tag: 0.1.5
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    3838== Changelog ==
    3939
     40= 0.1.5 =
     41* Fix head rendering
     42
     43= 0.1.4 =
     44* Fix another critical bug
     45
    4046= 0.1.3 =
    4147* Fix critical bug (head injection of div)
Note: See TracChangeset for help on using the changeset viewer.