Plugin Directory

Changeset 2324825


Ignore:
Timestamp:
06/16/2020 02:13:02 AM (6 years ago)
Author:
wprequal
Message:

Commit v7.7.3

Location:
wprequal/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wprequal/trunk/app/abstracts/class.Mail.php

    r2321931 r2324825  
    2828     * Contact form details.
    2929     *
    30      * @param $post_id
     30     * @param $survey_form_id
    3131     *
    3232     * @return bool|mixed
    3333     */
    3434
    35     public function details( $post_id ) {
     35    public function details( $survey_form_id ) {
    3636
    37         if ( $contact_form_id = get_post_meta( $post_id, 'contact_form_id', TRUE ) ) {
     37        if ( $contact_form_id = get_post_meta( $survey_form_id, 'contact_form_id', TRUE ) ) {
    3838
    3939            $details = ContactForm::get_details( $contact_form_id );
     40
     41            $details['contact_form_id'] = $contact_form_id;
     42            $details['survey_form_id']  = $survey_form_id;
    4043
    4144            Log::write( 'details', $details );
     
    4548        }
    4649
    47         Log::write( 'no-details', "Post ID: $post_id - Contact Form ID: $contact_form_id" );
     50        Log::write( 'details', "No details - Survey Form ID: $survey_form_id" );
    4851
    4952        return ContactForm::get_details( 0 );;
  • wprequal/trunk/app/classes/class.Update.php

    r2321931 r2324825  
    177177
    178178    private function get_settings() {
    179         $settings = Settings::instance();
    180         $settings->get_settings();
     179        Settings::instance()->get_settings();
    181180    }
    182181
  • wprequal/trunk/readme.txt

    r2321931 r2324825  
    159159== Change Log ==
    160160
     161= 7.7.3 =
     162* Improvement - Improve details logging
     163
    161164= 7.7.2 =
    162165* Improvement - Add from name to email options
  • wprequal/trunk/wprequal.php

    r2321931 r2324825  
    44Plugin URI:  https://wprequal.com
    55Description: Mortgage and Real Estate Lead Capture System
    6 Version:     7.7.2
     6Version:     7.7.3
    77Author:      WPrequal
    88Author URI:  https://wprequal.com
     
    4040
    4141$constants = array(
    42     'WPREQUAL_VERSION'            => '7.7.2',
     42    'WPREQUAL_VERSION'            => '7.7.3',
    4343    'WPREQOAL_PLUGIN'             => plugin_basename( __FILE__ ),
    4444    'WPREQUAL_OPTIONS'            => 'wprequal_options',
Note: See TracChangeset for help on using the changeset viewer.