Plugin Directory

Changeset 3448821


Ignore:
Timestamp:
01/28/2026 03:49:28 PM (2 months ago)
Author:
Harmonic_Design
Message:

update readme file to WP version

Location:
hd-quiz/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hd-quiz/trunk/includes/actions-ajax.php

    r3228552 r3448821  
    119119function hdq_get_question_type()
    120120{
     121    if (!hdq_user_permission()) {
     122        die();
     123    }
    121124    $question_type = "";
    122125    if (isset($_POST["question_type"])) {
     
    128131        $quiz_id = intval($_POST["quiz_id"]);
    129132    }
    130    
     133
    131134    $question_id = 0;
    132135    if (isset($_POST["question_id"])) {
  • hd-quiz/trunk/index.php

    r3351469 r3448821  
    66    * Author: Harmonic Design
    77    * Author URI: https://harmonicdesign.ca
    8     * Version: 2.0.9
     8    * Version: 2.0.10
    99    * Text Domain: hd-quiz
    1010    * Domain Path: /languages
     
    2424}
    2525if (!defined('HDQ_PLUGIN_VERSION')) {
    26     define('HDQ_PLUGIN_VERSION', '2.0.9');
     26    define('HDQ_PLUGIN_VERSION', '2.0.10');
    2727}
    2828
  • hd-quiz/trunk/readme.txt

    r3427772 r3448821  
    44Requires at least: 5.0
    55Tested up to: 6.9
    6 Stable tag: 2.0.9
     6Stable tag: 2.0.10
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    146146
    147147== Changelog ==
     148= 2.0.10 =
     149* - minor security fix
     150
    148151= 2.0.9 =
    149152* `on_submit` fix, and new `before_submit` action
     
    368371
    369372== Upgrade Notice ==
    370 = 2.0.9 =
    371 * `on_submit` fix, and new `before_submit` action
     373= 2.0.10 =
     374* Minor security fix
Note: See TracChangeset for help on using the changeset viewer.