Plugin Directory

Changeset 2923050


Ignore:
Timestamp:
06/07/2023 07:51:51 PM (3 years ago)
Author:
dhoppe
Message:

Version 1.7.52

Location:
encyclopedia-lexicon-glossary-wiki-dictionary/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • encyclopedia-lexicon-glossary-wiki-dictionary/trunk/includes/post-type.php

    r2486011 r2923050  
    5252            'menu_position' => 20, # below Pages
    5353            'show_in_rest' => true,
     54
     55            'show_in_graphql' => true,
     56            'graphql_single_name' => 'encyclopediaEntry',
     57            'graphql_plural_name' => 'encyclopediaEntries'
    5458        ];
    5559
  • encyclopedia-lexicon-glossary-wiki-dictionary/trunk/includes/taxonomies.php

    r2487657 r2923050  
    5656            ],
    5757            'show_in_rest' => true,
     58
     59            'show_in_graphql' => true,
     60            'graphql_single_name' => 'encyclopediaTag',
     61            'graphql_plural_name' => 'encyclopediaTags'
    5862        ];
    5963
  • encyclopedia-lexicon-glossary-wiki-dictionary/trunk/plugin.php

    r2861285 r2923050  
    55Plugin URI: https://dennishoppe.de/en/wordpress-plugins/encyclopedia
    66Description: Encyclopedia enables you to create your own encyclopedia, lexicon, glossary, wiki, dictionary or knowledge base.
    7 Version: 1.7.51
     7Version: 1.7.52
    88Author: Dennis Hoppe
    99Author URI: https://DennisHoppe.de
  • encyclopedia-lexicon-glossary-wiki-dictionary/trunk/readme.txt

    r2892715 r2923050  
    22Contributors: dhoppe
    33Tags: encyclopedia, lexicon, glossary, wiki, dictionary, knowledge base, directory, vocabulary, tooltip
    4 Requires at least: 5.0
     4Requires at least: 5.5
    55Tested up to: 6.2
    66Requires PHP: 7.1
     
    128128= Minimum Requirements =
    129129* WordPress 5.5 or greater
    130 * PHP version 7.1 or greater; PHP 8.0 is strongly recommended!
     130* PHP version 7.1 or greater; PHP 8 is strongly recommended!
    131131* MySQL version 5.6 or MariaDB 10 or greater
    132132
     
    177177== Changelog ==
    178178
     179= 1.7.52 =
     180* Added basic WPGraphQL support
     181* Fixed null parameter for htmlentities in encyclopedia-prefix-filter.php
     182
    179183= 1.7.51 =
    180184* Fixed invalid post type slugs which end or start with a slash
  • encyclopedia-lexicon-glossary-wiki-dictionary/trunk/templates/encyclopedia-prefix-filter.php

    r2486011 r2923050  
    1616                            <?php endif ?>
    1717
    18                             <?php echo HTMLEntities($element->prefix, null, 'UTF-8') ?>
     18                            <?php echo HTMLEntities($element->prefix, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML5, 'UTF-8') ?>
    1919
    2020                            <?php if ($element->disabled) : ?>
Note: See TracChangeset for help on using the changeset viewer.