Changeset 3310559
- Timestamp:
- 06/12/2025 02:07:57 PM (8 months ago)
- Location:
- intelly-related-posts/trunk
- Files:
-
- 4 edited
-
includes/classes/utils/AppOptions.php (modified) (1 diff)
-
includes/core.php (modified) (1 diff)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
intelly-related-posts/trunk/includes/classes/utils/AppOptions.php
r3111956 r3310559 188 188 } 189 189 } 190 if (isset($result['linkTarget']) && !empty($result['linkTarget'])) 191 { 192 if ($result['linkTarget'] !== '_blank') 193 { 194 if ($result['linkTarget'] !== '_self') 195 { 196 $result['linkTarget'] = '_blank'; 197 } 198 } 199 } 200 if (isset($result['linkRel']) && !empty($result['linkRel'])) 201 { 202 if ($result['linkRel'] !== 'dofollow') 203 { 204 if ($result['linkRel'] !== 'nofollow') 205 { 206 $result['linkRel'] = 'nofollow'; 207 } 208 } 190 if (!empty($result['linkTarget']) && !in_array($result['linkTarget'], ['_blank', '_self'], true)) { 191 $result['linkTarget'] = '_blank'; 192 } 193 if (!empty($result['linkRel']) && !in_array($result['linkRel'], ['dofollow', 'nofollow'], true)) { 194 $result['linkRel'] = 'nofollow'; 209 195 } 210 196 return $result; 211 197 } 212 198 public function setTemplateStyle($value) { 213 if (isset($value['linkTarget']) && !empty($value['linkTarget'])) 214 { 215 if ($value['linkTarget'] !== '_blank') 216 { 217 if ($value['linkTarget'] !== '_self') 218 { 219 $value['linkTarget'] = '_blank'; 220 } 221 } 222 } 223 if (isset($value['linkRel']) && !empty($value['linkRel'])) 224 { 225 if ($value['linkRel'] !== 'dofollow') 226 { 227 if ($value['linkRel'] !== 'nofollow') 228 { 229 $value['linkRel'] = 'nofollow'; 230 } 231 } 199 if (!empty($value['linkTarget']) && !in_array($value['linkTarget'], ['_blank', '_self'], true)) { 200 $value['linkTarget'] = '_blank'; 201 } 202 if (!empty($value['linkRel']) && !in_array($value['linkRel'], ['dofollow', 'nofollow'], true)) { 203 $value['linkRel'] = 'nofollow'; 232 204 } 233 205 $this->setOption('TemplateStyle', $value); -
intelly-related-posts/trunk/includes/core.php
r3289220 r3310559 149 149 } 150 150 151 $options['ctaText'] = do_shortcode( $options['ctaText']);151 $options['ctaText'] = do_shortcode( wp_kses_post( $options['ctaText'] ) ); 152 152 153 153 $posts=array(); -
intelly-related-posts/trunk/index.php
r3111956 r3310559 7 7 Author URI: https://Data443.com/ 8 8 Email: [email protected] 9 Version: 3. 8.09 Version: 3.9.0 10 10 Requires at least: 3.6.0 11 11 Requires PHP: 5.6 … … 21 21 define('IRP_PLUGIN_SLUG', 'intelly-related-posts'); 22 22 define('IRP_PLUGIN_NAME', 'Inline Related Posts'); 23 define('IRP_PLUGIN_VERSION', '3. 8.0');23 define('IRP_PLUGIN_VERSION', '3.9.0'); 24 24 define('IRP_PLUGIN_AUTHOR', 'Data443'); 25 25 define('IRP_PLUGIN_ROOT', dirname(__FILE__).'/'); -
intelly-related-posts/trunk/readme.txt
r3305070 r3310559 106 106 For detailed release notes, see our documentation here: [https://intellywp.com/docs/](https://data443.atlassian.net/servicedesk/customer/portal/17/article/858652673). 107 107 108 = 3.9.0 = 109 *Release Date - 2025-6-12* 110 111 * Do additional sanitization of inputs (RDU-1629) 112 108 113 = 3.8.0 = 109 114 *Release Date - 2024-7-3*
Note: See TracChangeset
for help on using the changeset viewer.