Plugin Directory

Changeset 3398099


Ignore:
Timestamp:
11/18/2025 01:34:48 PM (5 months ago)
Author:
recruitly
Message:

Release version 2.0.36

Location:
recruitly/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • recruitly/trunk/admin/includes/shortcodes.php

    r3245727 r3398099  
    1717add_shortcode('recruitly_job_cities', 'recruitly_wordpress_job_cities_shortcode');
    1818
    19 /**
     19/**Check and
    2020 * Renders Count of All Active Jobs
    2121 */
     
    334334            }
    335335            $langLIItems .= "</ul>";
    336             echo esc_html($langLIItems);
     336            echo wp_kses_post($langLIItems);
    337337        } else if (strtolower($job_lang_disp_mode) === 'csv') {
    338338            $langCSVItems = '';
     
    364364    if (!empty($field_val)) {
    365365        header('Content-Type: text/html; charset=UTF-8');
    366         echo esc_html(utf8_decode(nl2br($field_val)));
     366        echo wp_kses_post(utf8_decode($field_val));
    367367    }
    368368
     
    435435    }
    436436
    437     echo esc_html($langLIItems);
     437    echo wp_kses_post($langLIItems);
    438438}
    439439
  • recruitly/trunk/readme.txt

    r3397794 r3398099  
    146146* Fixed Sector Dropdown Filtering Issue.
    147147
     148= 2.0.36 =
     149* Fixed Html Encoding Issues on shortcodes.
     150
    148151== Upgrade Notice ==
    149152
  • recruitly/trunk/recruitly.php

    r3397794 r3398099  
    44Plugin URI: https://recruitly.io
    55Description: Recruitly job board integration.
    6 Version: 2.0.35
     6Version: 2.0.36
    77Author: Recruitly
    88Author URI: https://recruitly.io
     
    1515    exit; // Exit if accessed directly
    1616}
    17 define('RECRUITLY_PLUGIN_VERSION', '2.0.35');
     17define('RECRUITLY_PLUGIN_VERSION', '2.0.36');
    1818
    1919defined('RECRUITLY_POST_TYPE') or define('RECRUITLY_POST_TYPE', 'current-vacancies');
  • recruitly/trunk/release.md

    r3343505 r3398099  
    1212
    1313**Files modified:** readme.txt and recruitly.php
    14 **Result:** You have a new version number (e.g., 2.0.34)
     14**Result:** You have a new version number (e.g., 2.0.36)
    1515
    1616## COMMIT CHANGES
     
    1818Commit all changes to trunk:
    1919```bash
    20 svn commit -m "Release version 2.0.34"
     20svn commit -m "Release version 2.0.36"
    2121```
    2222
     
    2525Create SVN tag with your version number:
    2626```bash
    27 svn copy trunk tags/2.0.34
    28 svn commit -m "Tag version 2.0.34"
     27svn copy trunk tags/2.0.36
     28svn commit -m "Tag version 2.0.36"
    2929```
    3030
Note: See TracChangeset for help on using the changeset viewer.