Plugin Directory

Changeset 3369836


Ignore:
Timestamp:
09/29/2025 03:20:48 PM (5 months ago)
Author:
sided
Message:

settings page fixes

Location:
sided/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sided/trunk/partials/sided-settings.php

    r3194244 r3369836  
    1111}
    1212
    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');
     15if(is_array($embed_options) && !array_key_exists('updated_at', $embed_options)){
    1416    delete_option('sided_sided_embed_placement_options');
    1517}
     
    119121<?php
    120122$placement_options_array = get_option('sided_sided_embed_placement_options');
    121 unset($placement_options_array['updated_at']);
     123if (isset($placement_options_array['updated_at'])) {
     124    unset($placement_options_array['updated_at']);
     125}
     126
    122127?>
    123128<script type="text/javascript">
  • sided/trunk/readme.txt

    r3369395 r3369836  
    55Requires at least: 4.7
    66Tested up to: 6.5.3
    7 Stable tag: 1.4.6
     7Stable tag: 1.4.7
    88Requires PHP: 7.0
    99License: GPLv2 or later
  • sided/trunk/sided.php

    r3369395 r3369836  
    44* Plugin URI: https://sided.co/
    55* Description: It is a wordpress plugin to embed sided polls in your Wordpress website.
    6 * Version: 1.4.6
     6* Version: 1.4.7
    77* Author: Sided
    88**/
    99
    10 define( 'SIDED_VERSION', '1.4.6' );
     10define( 'SIDED_VERSION', '1.4.7' );
    1111define( 'SIDED_PLUGIN', __FILE__ );
    1212define( 'SIDED_PLUGIN_DIR', untrailingslashit( dirname( SIDED_PLUGIN ) ) );
Note: See TracChangeset for help on using the changeset viewer.