Changeset 3398099
- Timestamp:
- 11/18/2025 01:34:48 PM (5 months ago)
- Location:
- recruitly/trunk
- Files:
-
- 4 edited
-
admin/includes/shortcodes.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
-
recruitly.php (modified) (2 diffs)
-
release.md (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recruitly/trunk/admin/includes/shortcodes.php
r3245727 r3398099 17 17 add_shortcode('recruitly_job_cities', 'recruitly_wordpress_job_cities_shortcode'); 18 18 19 /** 19 /**Check and 20 20 * Renders Count of All Active Jobs 21 21 */ … … 334 334 } 335 335 $langLIItems .= "</ul>"; 336 echo esc_html($langLIItems);336 echo wp_kses_post($langLIItems); 337 337 } else if (strtolower($job_lang_disp_mode) === 'csv') { 338 338 $langCSVItems = ''; … … 364 364 if (!empty($field_val)) { 365 365 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)); 367 367 } 368 368 … … 435 435 } 436 436 437 echo esc_html($langLIItems);437 echo wp_kses_post($langLIItems); 438 438 } 439 439 -
recruitly/trunk/readme.txt
r3397794 r3398099 146 146 * Fixed Sector Dropdown Filtering Issue. 147 147 148 = 2.0.36 = 149 * Fixed Html Encoding Issues on shortcodes. 150 148 151 == Upgrade Notice == 149 152 -
recruitly/trunk/recruitly.php
r3397794 r3398099 4 4 Plugin URI: https://recruitly.io 5 5 Description: Recruitly job board integration. 6 Version: 2.0.3 56 Version: 2.0.36 7 7 Author: Recruitly 8 8 Author URI: https://recruitly.io … … 15 15 exit; // Exit if accessed directly 16 16 } 17 define('RECRUITLY_PLUGIN_VERSION', '2.0.3 5');17 define('RECRUITLY_PLUGIN_VERSION', '2.0.36'); 18 18 19 19 defined('RECRUITLY_POST_TYPE') or define('RECRUITLY_POST_TYPE', 'current-vacancies'); -
recruitly/trunk/release.md
r3343505 r3398099 12 12 13 13 **Files modified:** readme.txt and recruitly.php 14 **Result:** You have a new version number (e.g., 2.0.3 4)14 **Result:** You have a new version number (e.g., 2.0.36) 15 15 16 16 ## COMMIT CHANGES … … 18 18 Commit all changes to trunk: 19 19 ```bash 20 svn commit -m "Release version 2.0.3 4"20 svn commit -m "Release version 2.0.36" 21 21 ``` 22 22 … … 25 25 Create SVN tag with your version number: 26 26 ```bash 27 svn copy trunk tags/2.0.3 428 svn commit -m "Tag version 2.0.3 4"27 svn copy trunk tags/2.0.36 28 svn commit -m "Tag version 2.0.36" 29 29 ``` 30 30
Note: See TracChangeset
for help on using the changeset viewer.