Changeset 3094116
- Timestamp:
- 05/28/2024 07:12:20 PM (22 months ago)
- Location:
- jquery-collapse-o-matic/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
collapse-o-matic.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jquery-collapse-o-matic/trunk/README.md
r3075464 r3094116 5 5 * Requires at least: 4.9 6 6 * Tested up to: 6.5.3 7 * Stable tag: 1.8.5. 77 * Stable tag: 1.8.5.8 8 8 * Requires PHP: 7.2 9 9 * License: GPLv2 or later -
jquery-collapse-o-matic/trunk/collapse-o-matic.php
r3075449 r3094116 5 5 Plugin URI: https://pluginoven.com/plugins/collapse-o-matic/ 6 6 Description: Collapse-O-Matic adds an [expand] shortcode that wraps content into a lovely, jQuery collapsible div. 7 Version: 1.8.5. 77 Version: 1.8.5.8 8 8 Author: twinpictures, baden03 9 9 Author URI: https://twinpictures.de/ … … 30 30 * @var string 31 31 */ 32 var $version = '1.8.5. 7';32 var $version = '1.8.5.8'; 33 33 34 34 /** … … 278 278 } 279 279 280 //id does not allow spaces281 $id = preg_replace('/\s+/', '_', $id);282 283 280 $ewo = ''; 284 281 $ewc = ''; 285 282 286 //id does not allow spaces 287 $id = preg_replace('/\s+/', '_', $id);283 //id does not allow spaces or any funny business 284 $id = preg_replace('/\s+/', '_', esc_attr($id)); 288 285 289 286 //placeholders -
jquery-collapse-o-matic/trunk/readme.txt
r3075460 r3094116 6 6 Requires at least: 4.9 7 7 Tested up to: 6.5.2 8 Stable tag: 1.8.5. 78 Stable tag: 1.8.5.8 9 9 Requires PHP: 7.2 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 12 13 Place content inside an expanding/collapsing accordion element.13 Add an expanding/collapsing accordion shortcode. 14 14 15 15 == Description == … … 51 51 52 52 == Changelog == 53 54 = 1.8.5.8 = 55 * the id attribute is escaped to prevent any funny business 56 53 57 54 58 = 1.8.5.7 = … … 440 444 441 445 == Upgrade Notice == 442 * the tag, targtag and elwrap will now also allow the tag defined as the default tag attribute in the plugin settings page. 443 * button has been added to the allowed html tag list 446 * the id attribute is escaped to prevent any funny business
Note: See TracChangeset
for help on using the changeset viewer.