PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmSMTPController.php +8 -4 6.256.7 View file →
@@ -328,11 +328,11 @@
328 328
329 329 $step['plugin'] = $this->output_data['pro_plugin_installed'] ? $this->config['pro_plugin'] : $this->config['lite_plugin'];
330 330
331 331 if ( $this->output_data['plugin_activated'] ) {
332 - $step['icon'] = 'frm_step_complete_icon';
333 - $step['button_text'] = __( 'WP Mail SMTP Installed & Activated', 'formidable' );
334 - $step['button_class'] = 'grey disabled';
332 + $step['icon'] = 'frm_step_complete_icon';
333 + $step['button_text'] = __( 'WP Mail SMTP Installed & Activated', 'formidable' );
334 + $step['button_class'] = 'grey disabled';
335 335 } else {
336 336 $step['button_text'] = __( 'Activate WP Mail SMTP', 'formidable' );
337 337 $step['button_class'] = 'frm-activate-addon';
338 338 $step['button_action'] = __( 'Activate', 'formidable' );
@@ -404,9 +404,9 @@
404 404 * Get $phpmailer instance.
405 405 *
406 406 * @since 4.04.04
407 407 *
408 - * @return PHPMailer|\WPMailSMTP\Providers\MailCatcherInterface Instance of PHPMailer.
408 + * @return \WPMailSMTP\Providers\MailCatcherInterface|PHPMailer Instance of PHPMailer.
409 409 */
410 410 protected function get_phpmailer() {
411 411 global $phpmailer;
412 412
@@ -451,8 +451,10 @@
451 451 private function css() {
452 452 ?>
453 453 <style>
454 454 #frm-admin-smtp *, #frm-admin-smtp *::before, #frm-admin-smtpp *::after {
455 + -webkit-box-sizing: border-box;
456 + -moz-box-sizing: border-box;
455 457 box-sizing: border-box;
456 458 }
457 459 #frm-admin-smtp{
458 460 width: 700px;
@@ -511,8 +513,10 @@
511 513 border-radius: 3px;
512 514 }
513 515 #frm-admin-smtp .step,
514 516 #frm-admin-smtp .screenshot .cont {
517 + -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
518 + -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
515 519 box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
516 520 }
517 521 #frm-admin-smtp .step {
518 522 background-color: #F9F9F9;