Plugin Directory

Changeset 1408545


Ignore:
Timestamp:
05/02/2016 12:52:18 AM (10 years ago)
Author:
akosicb
Message:

Fix Comma issues

Location:
contact-form-advanced-database/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • contact-form-advanced-database/trunk/cf7_advance_db.php

    r1335219 r1408545  
    55 * Plugin URI: http://www.christianbautista.info/contact-form-advance-database
    66 * Description: A Very Simple plugin that will capture all the emails being sent using Contact Form 7 Plugin
    7  * Version: 1.0.7
     7 * Version: 1.0.8
    88 * Author: Christian A. Bautista
    99 * Author URI: http://www.christianbautista.info
  • contact-form-advanced-database/trunk/lib/display/export.php

    r1163274 r1408545  
    1818                return rtrim($toReturn," | ");
    1919            }else{
    20                 return $dataArr;
     20               
     21                return str_replace( array( "\n", "\r", "," ) , ' ' , $dataArr);
    2122            }
    2223        },$cf7AdbArrData));
  • contact-form-advanced-database/trunk/lib/js/cf7-script.js

    r1317717 r1408545  
    8888     jQuery('.cfdb-notif').delay(2000).fadeOut('slow');
    8989
     90    // Change Column name
     91    $('#property-lead-table_wrapper column-title span').click(function(){
     92        $(this).attr('contentEditable',true);
     93    })
     94
    9095     
    9196     
  • contact-form-advanced-database/trunk/readme.txt

    r1317721 r1408545  
    44Tags: contact, form, contact form database, contact form leads, contact form db, db.
    55Requires at least: 3.9.1
    6 Tested up to: 4.4
    7 Stable tag: 4.3.1
     6Tested up to: 4.5.1
     7Stable tag: 4.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444== Changelog ==
    4545
     46= 1.0.8 =
     47* Fix export with comma issue
     48* Tested on WP Version 4.5.1
     49
    4650= 1.0.6 =
    4751* Checkbox and Radio Buttons Bug fixed
Note: See TracChangeset for help on using the changeset viewer.