Plugin Directory

Changeset 568672


Ignore:
Timestamp:
07/07/2012 02:41:44 PM (14 years ago)
Author:
misanthrop
Message:

Included MYSQL patch from Sean Patrick Rhorer to enable display of releases even with a restrictive host setting for max join size

Location:
wp-download-codes
Files:
7 added
3 edited

Legend:

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

    r460780 r568672  
    44Tags: download, download code, code generator
    55Requires at least: 2.5
    6 Tested up to: 3.2
     6Tested up to: 3.4
    77Stable tag: 2.1
    88
     
    4848
    4949== Changelog ==
     50
     51= 2.1.1 =
     52* Included MYSQL patch from Sean Patrick Rhorer to enable display of releases even with a restrictive host setting for max join size
    5053
    5154= 2.1 =
  • wp-download-codes/trunk/dc_administration.php

    r407442 r568672  
    7272        WHERE   c.group IS NULL OR c.group = 0";
    7373    $code_groups = $wpdb->get_results( $sql );
     74       
    7475    foreach ( $code_groups as $code_group ) {
    7576        // Create a new code group
     
    307308function dc_admin_releases() {
    308309    global $wpdb;
     310   
     311    $wpdb->query('SET OPTION SQL_BIG_SELECTS = 1');
    309312
    310313    // Get parameters
     
    512515function dc_admin_codes() {
    513516    global $wpdb;
     517   
     518    $wpdb->query('SET OPTION SQL_BIG_SELECTS = 1');
    514519
    515520    // Get parameters
  • wp-download-codes/trunk/wp-download-codes.php

    r460780 r568672  
    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.1
     8Version: 2.1.1
    99Author: misanthrop, spalmer
    1010Author URI: http://www.misantropolis.de, http://quoperative.com
    1111
    12     Copyright 2009-2011 Armin Fischer  (email : misantropolis@gmail.com)
     12    Copyright 2009-2012 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.