Plugin Directory

Changeset 788177


Ignore:
Timestamp:
10/15/2013 01:45:15 PM (12 years ago)
Author:
johndaskovsky
Message:

Version 1.1.6 - Repair of integration with latest version of Cart66

Location:
classdex/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • classdex/trunk/classdex.php

    r778774 r788177  
    55Description: A class and customer management system for Wordpress.
    66Author: John Daskovsky 
    7 Version: 1.1.5
     7Version: 1.1.6
    88Author URI: http://howtononprofit.wordpress.com/about/
    99
  • classdex/trunk/create_class.php

    r767486 r788177  
    9696    if(class_exists('Cart66Product')) {
    9797        $product = new Cart66Product();
     98        $_POST['cart66_product_nonce'] = wp_create_nonce('cart66_product_nonce');
    9899        if($discounts) {
    99100            $product->setData(array(
  • classdex/trunk/edit_class.php

    r767486 r788177  
    107107                $product = new Cart66Product();
    108108                $product->loadByItemNumber($class_id);
     109                $_POST['cart66_product_nonce'] = wp_create_nonce('cart66_product_nonce');
    109110                if($discounts) {
    110111                    $product->setData(array(
  • classdex/trunk/includes/functions.php

    r767486 r788177  
    501501                echo "<td>{$row['phone']}</td>";
    502502                echo "<td>";
     503                $payment = get_reg_deposit($row['reg_id']);
    503504                if(is_paid($row['reg_id'])) { echo "PAID"; }
     505                elseif($payment > 0)  { echo "Partial"; }
     506                else  { echo "Unpaid"; }
    504507                echo "</td>";
    505                 $payment = get_reg_deposit($row['reg_id']);
    506508                $delete_registration_url = "admin.php?page=classdex_delete_table_item&amp;noheader=true&amp;t=registrations&amp;i=" . urlencode($row['reg_id']);
    507509                echo "<td><a href=\"admin.php?page=classdex_edit_customer&amp;cust_id={$row['cust_id']}\"><i class=\"icon-pencil\"></i> Edit</a>&nbsp;&nbsp;
  • classdex/trunk/readme.txt

    r778774 r788177  
    33Tags: class registration, customer management, yoga studio, Mailchimp, Cart66
    44Requires at least: 3.5
    5 Tested up to: 3.6
    6 Stable tag: 1.1.5
     5Tested up to: 3.6.1
     6Stable tag: 1.1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414[Read the detailed documentation.](http://howtononprofit.wordpress.com/classdex/)
     15
    1516[Questions? Post in the forum.](http://wordpress.org/support/plugin/classdex)
    1617
     
    4546
    4647== Changelog ==
     48
     49= Version 1.1.6 =
     50* FIXED: Repaired integration with Cart66 version 1.5.1.15.
     51* NEW: Added Unpaid and Partial as payment status descriptions.
    4752
    4853= Version 1.1.5 =
Note: See TracChangeset for help on using the changeset viewer.