Plugin Directory

Changeset 3062836


Ignore:
Timestamp:
04/02/2024 05:22:41 PM (2 years ago)
Author:
awsmin
Message:

V 3.4.6

  • Fixed: Author email template tag is not working properly in job expiry notification.
  • Minor bug fixes and code improvements.
Location:
wp-job-openings
Files:
175 added
5 edited

Legend:

Unmodified
Added
Removed
  • wp-job-openings/trunk/inc/class-awsm-job-openings-form.php

    r3058898 r3062836  
    534534                            $applicant_details = array(
    535535                                'awsm_job_id'           => $job_id,
    536                                 'awsm_apply_for'        => esc_html( get_the_title( $job_id ) ),
     536                                'awsm_apply_for'        => html_entity_decode( esc_html( get_the_title( $job_id ) ) ),
    537537                                'awsm_applicant_ip'     => isset( $_SERVER['REMOTE_ADDR'] ) ? sanitize_text_field( $_SERVER['REMOTE_ADDR'] ) : '',
    538538                                'awsm_applicant_name'   => $applicant_name,
  • wp-job-openings/trunk/inc/class-awsm-job-openings-mail-customizer.php

    r3058898 r3062836  
    5252
    5353    public static function get_settings() {
     54        if ( ! class_exists( 'AWSM_Job_Openings_Settings' ) ) {
     55            require_once AWSM_JOBS_PLUGIN_DIR . '/admin/class-awsm-job-openings-settings.php';
     56        }
    5457        $default_from_email = AWSM_Job_Openings_Settings::awsm_from_email( true );
    5558        /**
  • wp-job-openings/trunk/languages/wp-job-openings.pot

    r3058898 r3062836  
    88"Content-Transfer-Encoding: 8bit\n"
    99"Language-Team: AWSM innovations <hello@awsm.in>\n"
    10 "POT-Creation-Date: 2024-03-21 09:38+0000\n"
     10"POT-Creation-Date: 2024-04-02 14:55+0000\n"
    1111"X-Poedit-Basepath: ..\n"
    1212"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    316316msgstr ""
    317317
    318 #: admin/class-awsm-job-openings-info.php:296, admin/class-awsm-job-openings-settings.php:471, inc/class-awsm-job-openings-mail-customizer.php:69, inc/class-awsm-job-openings-mail-customizer.php:105, admin/templates/info/setup.php:20
     318#: admin/class-awsm-job-openings-info.php:296, admin/class-awsm-job-openings-settings.php:471, inc/class-awsm-job-openings-mail-customizer.php:72, inc/class-awsm-job-openings-mail-customizer.php:108, admin/templates/info/setup.php:20
    319319msgid "WP Job Openings"
    320320msgstr ""
     
    478478
    479479#. translators: %1$s: Site link, %2$s: Plugin website link
    480 #: admin/class-awsm-job-openings-settings.php:471, inc/class-awsm-job-openings-mail-customizer.php:69
     480#: admin/class-awsm-job-openings-settings.php:471, inc/class-awsm-job-openings-mail-customizer.php:72
    481481msgid "Sent from %1$s by %2$s Plugin"
    482482msgstr ""
     
    976976msgstr ""
    977977
    978 #: inc/class-awsm-job-openings-mail-customizer.php:89
     978#: inc/class-awsm-job-openings-mail-customizer.php:92
    979979msgid "It looks like you have overridden the mail HTML template files. This version is unsupported with the notification customizer. Please update template files for full support."
    980980msgstr ""
  • wp-job-openings/trunk/readme.txt

    r3058898 r3062836  
    104104== Changelog ==
    105105
     106= V 3.4.6 - 2024-04-02 =
     107* Fixed: Author email template tag is not working properly in job expiry notification.
     108* Minor bug fixes and code improvements.
     109
    106110= V 3.4.5 - 2024-03-21 =
    107111* Improved: Change notification from email to WordPress default email.
  • wp-job-openings/trunk/wp-job-openings.php

    r3058898 r3062836  
    66 * Author: AWSM Innovations
    77 * Author URI: https://awsm.in/
    8  * Version: 3.4.5
     8 * Version: 3.4.6
    99 * Requires at least: 4.8
    1010 * Requires PHP: 5.6
     
    3838}
    3939if ( ! defined( 'AWSM_JOBS_PLUGIN_VERSION' ) ) {
    40     define( 'AWSM_JOBS_PLUGIN_VERSION', '3.4.5' );
     40    define( 'AWSM_JOBS_PLUGIN_VERSION', '3.4.6' );
    4141}
    4242if ( ! defined( 'AWSM_JOBS_UPLOAD_DIR_NAME' ) ) {
     
    19191919                    if ( ! empty( $subject ) && ! empty( $content ) ) {
    19201920                        $subject    = str_replace( $tag_names, $tag_values, $subject );
    1921                         $from_email = str_replace( $tag_names, $tag_values, $from_email );
     1921                        $from_email = str_replace( $email_tag_names, $email_tag_values, $from_email );
    19221922                        $to         = str_replace( $email_tag_names, $email_tag_values, $to );
    19231923                        $reply_to   = str_replace( $email_tag_names, $email_tag_values, $reply_to );
Note: See TracChangeset for help on using the changeset viewer.