Plugin Directory

Changeset 3343505


Ignore:
Timestamp:
08/12/2025 11:32:21 AM (8 months ago)
Author:
recruitly
Message:

Release version 2.0.34 - Fixed HTML rendering in job short description field

Location:
recruitly/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • recruitly/trunk/readme.txt

    r3339065 r3343505  
    44Requires at least: 4.5
    55Tested up to: 6.8.2
    6 Stable tag: 2.0.33
     6Stable tag: 2.0.34
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140* Fix character encoding issues.
    141141
     142= 2.0.34 =
     143* Fixed HTML rendering in job short description field - changed from escaped text to properly rendered HTML.
     144
    142145== Upgrade Notice ==
    143146
  • recruitly/trunk/recruitly.php

    r3339065 r3343505  
    44Plugin URI: https://recruitly.io
    55Description: Recruitly job board integration.
    6 Version: 2.0.33
     6Version: 2.0.34
    77Author: Recruitly
    88Author URI: https://recruitly.io
     
    1515    exit; // Exit if accessed directly
    1616}
    17 define('RECRUITLY_PLUGIN_VERSION', '2.0.33');
     17define('RECRUITLY_PLUGIN_VERSION', '2.0.34');
    1818
    1919defined('RECRUITLY_POST_TYPE') or define('RECRUITLY_POST_TYPE', 'current-vacancies');
  • recruitly/trunk/templates/job-listing.php

    r3195911 r3343505  
    4949                </div>
    5050                <div class="cool-job-excerpt">
    51                     <div class="cool-job-desc"> <?php echo esc_html(recruitly_get_custom_post_value('shortDesc')); ?></div>
     51                    <div class="cool-job-desc"> <?php echo wp_kses_post(recruitly_get_custom_post_value('shortDesc')); ?></div>
    5252                </div>
    5353                <div class="cool-job-footer" style="text-align: right;">
Note: See TracChangeset for help on using the changeset viewer.