Plugin Directory

Changeset 1079427


Ignore:
Timestamp:
01/31/2015 05:07:06 AM (11 years ago)
Author:
bgentry
Message:

fixing php notices caused by line 72 in faq.php

Location:
easy-faq-with-expanding-text
Files:
21 added
2 edited

Legend:

Unmodified
Added
Removed
  • easy-faq-with-expanding-text/trunk/faq.php

    r1069788 r1079427  
    33Plugin Name: Easy FAQ with Expanding Text
    44Description: Easily create a Frequently Asked Questions page with answers that slide down when the questions are clicked. No need for a shortcode, HTML coding, or javascript tweaking.
    5 Version: 3.2.8
     5Version: 3.2.8.1
    66Author: bgentry
    77Author URI: http://bryangentry.us
     
    4949            $visualCue = $faqoptions['visualcue'];
    5050        }
    51     } else { //this is not a signle page or post, so use the default option
     51    } else { //this is not a single page or post, so use the default option
    5252           
    5353            $visualCue = $faqoptions['visualcue'];
     
    7070        $openedimg = plugins_url( 'minussignWhite.png', __FILE__ );
    7171    }
    72         if( $closedimg ) {
     72        if( isset( $closedimg ) ) {
    7373        //if the user set up images to show...
    7474            echo '
  • easy-faq-with-expanding-text/trunk/readme.txt

    r1069788 r1079427  
    44Tags: faq pages
    55Tested up to: 4.1
    6 Stable tag: 3.2.8
     6Stable tag: 3.2.8.1
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2323
    2424== Changelog ==
     25
     26=3.2.8.1=
     27*Fixed another PHP notice.
    2528
    2629=3.2.8=
Note: See TracChangeset for help on using the changeset viewer.