Plugin Directory

Changeset 1893902


Ignore:
Timestamp:
06/16/2018 12:28:25 PM (8 years ago)
Author:
misanthrop
Message:

2.5.2: Fixed minor issues with null values in shortcode.php.

Location:
wp-download-codes/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-download-codes/trunk/README.txt

    r1665905 r1893902  
    44Tags: download, download code, code generator
    55Requires at least: 2.5
    6 Tested up to: 4.5
    7 Stable tag: 2.5.1
     6Tested up to: 4.9.6
     7Stable tag: 2.5.2
    88
    9 The plugin enables the generation and management of download codes for all types of files (zip, mp3, ...).
     9The plugin enables to generation and management of download codes for all types of files (zip, mp3, ...).
    1010
    1111== Description ==
  • wp-download-codes/trunk/includes/shortcode.php

    r924711 r1893902  
    1818    $id = "";
    1919    $anchor = "";
    20     $post_code = "";   
     20    $post_code = "";
     21    $ret = "";
    2122   
    2223    // Get attributes
     
    8889    // Compile HTML result
    8990    $html = '<div class="dc-download-code">';
    90     if ( $download_lease_id[$shortcode_id] && ( $shortcode_id == 'all' || $shortcode_id == $submitted_release )) {
     91    if ( isset($download_lease_id) && $download_lease_id[$shortcode_id] && ( $shortcode_id == 'all' || $shortcode_id == $submitted_release )) {
    9192        // Show link for download
    9293        $html .= '<p>' . dc_msg( 'code_valid' ) . '</p>';
  • wp-download-codes/trunk/wp-download-codes.php

    r1426369 r1893902  
    66Description: The plugin enables to generation and management of download codes for .zip files. It was written to enable the free download of records and CDs with dedicated codes printed on the cover of the releases or on separate download cards.
    77
    8 Version: 2.5.1
     8Version: 2.5.2
    99Author: misanthrop, spalmer
    1010Author URI: http://www.misantropolis.de, http://quoperative.com
    1111
    12     Copyright 2009-2014 Armin Fischer  (email : misantropolis@gmail.com)
     12    Copyright 2009-2018 Armin Fischer  (email : misantropolis@gmail.com)
    1313   
    1414    This program is free software; you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.