Plugin Directory

Changeset 1773996


Ignore:
Timestamp:
11/23/2017 12:34:05 PM (8 years ago)
Author:
teamgate
Message:

Adding bug fixes.

Location:
teamgate-crm-forms
Files:
34 added
2 edited

Legend:

Unmodified
Added
Removed
  • teamgate-crm-forms/trunk/readme.txt

    r1768117 r1773996  
    55Requires at least: 4.5.1
    66Tested up to: 4.8.1
    7 Stable tag: 1.2
     7Stable tag: 1.2.1
    88License: MIT
    99License URI: https://www.teamgate.com/terms-of-service/
     
    4343== Changelog ==
    4444
     45**1.2.1**
     46* Fixed bug of the entry type.
     47
    4548**1.2**
    4649* Fixed compatibility issues with Contact Form 7.
  • teamgate-crm-forms/trunk/teamgate.php

    r1767678 r1773996  
    55    Plugin URI: https://www.teamgate.com
    66    Description: A simple Teamgate CRM plugin to generate new sales opportunities within WordPress.
    7     Version: 1.2
     7    Version: 1.2.1
    88    Author URI: https://www.teamgate.com
    99    License: GPL2
     
    8888
    8989    $entry = $tag->get_option('entry');
    90     $type = (empty($entry)) ? 'lead' : $entry[0];
     90    $type = (empty($entry)) ? 'leads' : $entry[0];
    9191
    9292    $value = isset($tag->values[0]) ? $tag->values[0] : '';
     
    143143                                <option value="deals">Deal</option>
    144144                            </select>
    145                             <input type="hidden" name="entry" id="entry" value="lead" class="oneline option">
     145                            <input type="hidden" name="entry" id="entry" value="leads" class="oneline option">
    146146                        </td>
    147147                    </tr>
Note: See TracChangeset for help on using the changeset viewer.