Plugin Directory

Changeset 2068160


Ignore:
Timestamp:
04/13/2019 05:23:57 AM (7 years ago)
Author:
MissionMike
Message:

Undefined index bugfix #2

Location:
dts-simple-share
Files:
18 added
1 edited

Legend:

Unmodified
Added
Removed
  • dts-simple-share/trunk/dts-simple-share.php

    r2068158 r2068160  
    44Plugin URI: https://dtweb.design/simple-share/
    55Description: Simple social media/email sharebar. Specify platforms and location, or use shortcode [dts_sharebar] wherever you want them to show up!
    6 Version: 0.4.3
     6Version: 0.4.4
    77Author: Michael R. Dinerstein
    88Author URI: https://www.linkedin.com/in/michaeldinerstein/
     
    462462        $order = $options['dts_order'];
    463463
    464         foreach( $order as $key )
     464        foreach( $order as $key ) :
     465           
     466            if ( ! isset( $smpl_sharers[$key] ) )
     467                continue;
     468
    465469            $sharebar .= dts_smplshare_icon_html( $smpl_sharers[$key], true );
     470
     471        endforeach;
    466472
    467473        foreach( $smpl_sharers as $smpl_sharer ) :
Note: See TracChangeset for help on using the changeset viewer.