Changeset 3369836
- Timestamp:
- 09/29/2025 03:20:48 PM (5 months ago)
- Location:
- sided/trunk
- Files:
-
- 3 edited
-
partials/sided-settings.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
sided.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sided/trunk/partials/sided-settings.php
r3194244 r3369836 11 11 } 12 12 13 if(get_option('sided_sided_embed_placement_options') && !array_key_exists('updated_at', get_option('sided_sided_embed_placement_options'))){ 13 # pushed on 2025-09-29 is array check 14 $embed_options = get_option('sided_sided_embed_placement_options'); 15 if(is_array($embed_options) && !array_key_exists('updated_at', $embed_options)){ 14 16 delete_option('sided_sided_embed_placement_options'); 15 17 } … … 119 121 <?php 120 122 $placement_options_array = get_option('sided_sided_embed_placement_options'); 121 unset($placement_options_array['updated_at']); 123 if (isset($placement_options_array['updated_at'])) { 124 unset($placement_options_array['updated_at']); 125 } 126 122 127 ?> 123 128 <script type="text/javascript"> -
sided/trunk/readme.txt
r3369395 r3369836 5 5 Requires at least: 4.7 6 6 Tested up to: 6.5.3 7 Stable tag: 1.4. 67 Stable tag: 1.4.7 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later -
sided/trunk/sided.php
r3369395 r3369836 4 4 * Plugin URI: https://sided.co/ 5 5 * Description: It is a wordpress plugin to embed sided polls in your Wordpress website. 6 * Version: 1.4. 66 * Version: 1.4.7 7 7 * Author: Sided 8 8 **/ 9 9 10 define( 'SIDED_VERSION', '1.4. 6' );10 define( 'SIDED_VERSION', '1.4.7' ); 11 11 define( 'SIDED_PLUGIN', __FILE__ ); 12 12 define( 'SIDED_PLUGIN_DIR', untrailingslashit( dirname( SIDED_PLUGIN ) ) );
Note: See TracChangeset
for help on using the changeset viewer.