Changeset 3238628
- Timestamp:
- 02/11/2025 02:25:01 PM (13 months ago)
- Location:
- dynamicconditions
- Files:
-
- 65 added
- 3 edited
-
tags/1.7.5 (added)
-
tags/1.7.5/Admin (added)
-
tags/1.7.5/Admin/DynamicConditionsAdmin.php (added)
-
tags/1.7.5/Admin/css (added)
-
tags/1.7.5/Admin/css/dynamic-conditions-admin.css (added)
-
tags/1.7.5/Admin/index.php (added)
-
tags/1.7.5/Admin/js (added)
-
tags/1.7.5/Admin/js/dynamic-conditions-admin.js (added)
-
tags/1.7.5/Admin/js/index.php (added)
-
tags/1.7.5/Admin/partials (added)
-
tags/1.7.5/Admin/partials/dynamic-conditions-admin-display.php (added)
-
tags/1.7.5/Admin/partials/index.php (added)
-
tags/1.7.5/LICENSE.txt (added)
-
tags/1.7.5/Legacy (added)
-
tags/1.7.5/Legacy/Lib (added)
-
tags/1.7.5/Legacy/Lib/DynamicConditionsDate.php (added)
-
tags/1.7.5/Legacy/Lib/index.php (added)
-
tags/1.7.5/Legacy/WeakMap_Fallback.php (added)
-
tags/1.7.5/Legacy/index.php (added)
-
tags/1.7.5/Lib (added)
-
tags/1.7.5/Lib/Activator.php (added)
-
tags/1.7.5/Lib/Date.php (added)
-
tags/1.7.5/Lib/Deactivator.php (added)
-
tags/1.7.5/Lib/DynamicConditions.php (added)
-
tags/1.7.5/Lib/DynamicTags (added)
-
tags/1.7.5/Lib/DynamicTags/NumberPostsTag.php (added)
-
tags/1.7.5/Lib/DynamicTags/index.php (added)
-
tags/1.7.5/Lib/I18n.php (added)
-
tags/1.7.5/Lib/Loader.php (added)
-
tags/1.7.5/Lib/index.php (added)
-
tags/1.7.5/Public (added)
-
tags/1.7.5/Public/DynamicConditionsPublic.php (added)
-
tags/1.7.5/Public/css (added)
-
tags/1.7.5/Public/css/debug.css (added)
-
tags/1.7.5/Public/css/dynamic-conditions-public.css (added)
-
tags/1.7.5/Public/css/index.php (added)
-
tags/1.7.5/Public/index.php (added)
-
tags/1.7.5/Public/js (added)
-
tags/1.7.5/Public/js/dynamic-conditions-public.js (added)
-
tags/1.7.5/Public/js/index.php (added)
-
tags/1.7.5/Public/partials (added)
-
tags/1.7.5/Public/partials/debug.php (added)
-
tags/1.7.5/Public/partials/dynamic-conditions-public-display.php (added)
-
tags/1.7.5/Public/partials/index.php (added)
-
tags/1.7.5/README.txt (added)
-
tags/1.7.5/composer.json (added)
-
tags/1.7.5/dynamic-conditions.php (added)
-
tags/1.7.5/index.php (added)
-
tags/1.7.5/languages (added)
-
tags/1.7.5/languages/dynamicconditions-de_DE.mo (added)
-
tags/1.7.5/languages/dynamicconditions-de_DE.po (added)
-
tags/1.7.5/languages/dynamicconditions.pot (added)
-
tags/1.7.5/languages/index.php (added)
-
tags/1.7.5/uninstall.php (added)
-
tags/1.7.5/vendor (added)
-
tags/1.7.5/vendor/autoload.php (added)
-
tags/1.7.5/vendor/composer (added)
-
tags/1.7.5/vendor/composer/ClassLoader.php (added)
-
tags/1.7.5/vendor/composer/LICENSE (added)
-
tags/1.7.5/vendor/composer/autoload_classmap.php (added)
-
tags/1.7.5/vendor/composer/autoload_namespaces.php (added)
-
tags/1.7.5/vendor/composer/autoload_psr4.php (added)
-
tags/1.7.5/vendor/composer/autoload_real.php (added)
-
tags/1.7.5/vendor/composer/autoload_static.php (added)
-
tags/1.7.5/vendor/composer/installed.json (added)
-
trunk/Public/DynamicConditionsPublic.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/dynamic-conditions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamicconditions/trunk/Public/DynamicConditionsPublic.php
r3134302 r3238628 349 349 $section->after_render(); 350 350 } else if ( $type == 'column' && $settings['dynamicconditions_resizeOtherColumns'] ) { 351 echo '<div class="dc-hidden-column" data-size="' . $settings['_column_size']. '"></div>';351 echo '<div class="dc-hidden-column" data-size="' . floatval( $settings['_column_size'] ) . '"></div>'; 352 352 } 353 353 354 354 if ( !empty( $settings['dynamicconditions_hideWrapper'] ) ) { 355 echo '<div class="dc-hide-wrapper" data-selector="' . $settings['dynamicconditions_hideWrapper']. '"></div>';355 echo '<div class="dc-hide-wrapper" data-selector="' . esc_attr($settings['dynamicconditions_hideWrapper']) . '"></div>'; 356 356 } 357 357 358 358 if ( !empty( $settings['dynamicconditions_hideOthers'] ) ) { 359 echo '<div class="dc-hide-others" data-selector="' . $settings['dynamicconditions_hideOthers']. '"></div>';359 echo '<div class="dc-hide-others" data-selector="' . esc_attr($settings['dynamicconditions_hideOthers']) . '"></div>'; 360 360 } 361 361 -
dynamicconditions/trunk/README.txt
r3134296 r3238628 5 5 Requires at least: 5.0 6 6 Requires PHP: 7.4 7 Tested up to: 6. 68 Stable tag: 1.7. 47 Tested up to: 6.7 8 Stable tag: 1.7.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 = 1.7.5 = 69 * Fix a potential vulnerability 70 68 71 = 1.7.4 = 69 72 * Fix big issue with loops destroying everything -
dynamicconditions/trunk/dynamic-conditions.php
r3134296 r3238628 23 23 * Plugin URI: https://github.com/RTO-Websites/dynamic-conditions 24 24 * Description: Activates conditions for dynamic tags to show/hides a widget. 25 * Version: 1.7. 425 * Version: 1.7.5 26 26 * Author: RTO GmbH 27 27 * Author URI: https://www.rto.de … … 37 37 } 38 38 39 define( 'DynamicConditions_VERSION', '1.7. 4' );39 define( 'DynamicConditions_VERSION', '1.7.5' ); 40 40 41 41 define( 'DynamicConditions_DIR', str_replace( '\\', '/', __DIR__ ) );
Note: See TracChangeset
for help on using the changeset viewer.