Changeset 2324825
- Timestamp:
- 06/16/2020 02:13:02 AM (6 years ago)
- Location:
- wprequal/trunk
- Files:
-
- 4 edited
-
app/abstracts/class.Mail.php (modified) (2 diffs)
-
app/classes/class.Update.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wprequal.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wprequal/trunk/app/abstracts/class.Mail.php
r2321931 r2324825 28 28 * Contact form details. 29 29 * 30 * @param $ post_id30 * @param $survey_form_id 31 31 * 32 32 * @return bool|mixed 33 33 */ 34 34 35 public function details( $ post_id ) {35 public function details( $survey_form_id ) { 36 36 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 ) ) { 38 38 39 39 $details = ContactForm::get_details( $contact_form_id ); 40 41 $details['contact_form_id'] = $contact_form_id; 42 $details['survey_form_id'] = $survey_form_id; 40 43 41 44 Log::write( 'details', $details ); … … 45 48 } 46 49 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" ); 48 51 49 52 return ContactForm::get_details( 0 );; -
wprequal/trunk/app/classes/class.Update.php
r2321931 r2324825 177 177 178 178 private function get_settings() { 179 $settings = Settings::instance(); 180 $settings->get_settings(); 179 Settings::instance()->get_settings(); 181 180 } 182 181 -
wprequal/trunk/readme.txt
r2321931 r2324825 159 159 == Change Log == 160 160 161 = 7.7.3 = 162 * Improvement - Improve details logging 163 161 164 = 7.7.2 = 162 165 * Improvement - Add from name to email options -
wprequal/trunk/wprequal.php
r2321931 r2324825 4 4 Plugin URI: https://wprequal.com 5 5 Description: Mortgage and Real Estate Lead Capture System 6 Version: 7.7. 26 Version: 7.7.3 7 7 Author: WPrequal 8 8 Author URI: https://wprequal.com … … 40 40 41 41 $constants = array( 42 'WPREQUAL_VERSION' => '7.7. 2',42 'WPREQUAL_VERSION' => '7.7.3', 43 43 'WPREQOAL_PLUGIN' => plugin_basename( __FILE__ ), 44 44 'WPREQUAL_OPTIONS' => 'wprequal_options',
Note: See TracChangeset
for help on using the changeset viewer.