Plugin Directory

Changeset 1508840


Ignore:
Timestamp:
10/05/2016 04:18:06 PM (10 years ago)
Author:
deller21
Message:

fix bags

Location:
sms-for-contact-form-7/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sms-for-contact-form-7/trunk/main.php

    r1475213 r1508840  
    1313    $this->plugin_dir = basename( dirname( __FILE__ ) );
    1414   
    15     add_action( 'wpcf7_admin_after_form', array( &$this, 'setup_form_options' ) );
     15    //add_action( 'wpcf7_admin_after_form', array( &$this, 'setup_form_options' ) );
    1616    add_action( 'wpcf7_after_save', array( &$this, 'save_form' ) );
    1717    add_action( 'wpcf7_before_send_mail', array( &$this, 'send_sms' ) );
  • sms-for-contact-form-7/trunk/smsru-for-cf7.php

    r1499560 r1508840  
    99*/
    1010
    11 $GLOBALS['cf7smsru_plugins'][ basename( dirname( __FILE__ ) ) ] = '1.0.1';
     11$GLOBALS['cf7smsru_plugins'][ basename( dirname( __FILE__ ) ) ] = '1.0.2';
    1212
    1313if( !function_exists( 'cf7smsru_loader' ) ) {
  • sms-for-contact-form-7/trunk/templates/form-options-4.2.php

    r1475213 r1508840  
    2121        </th>
    2222        <td>
    23             <input type="checkbox" id="wpcf7-sms-lat" name="wpcf7-sms[lat]" value="1" <?php checked( $data['lat'] ); ?>>
     23            <input type="checkbox" id="wpcf7-sms-lat" name="wpcf7-sms[lat]" value="1" <?php isset($data['lat']) ? checked( $data['lat'] ) : ''; ?>>
    2424        </td>
    2525    </tr>
Note: See TracChangeset for help on using the changeset viewer.