Plugin Directory

Changeset 465818


Ignore:
Timestamp:
11/21/2011 10:37:34 PM (14 years ago)
Author:
rfrankel
Message:

Fixed an error with the show_categories shortcode. This bug causes funny line breaks in some themes.

Location:
wp-super-faq/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-super-faq/trunk/readme.txt

    r463289 r465818  
    55Requires at least: 3.1
    66Tested up to: 3.2.1
    7 Stable tag: 0.5.2
     7Stable tag: 0.5.3
    88
    99A lightweight FAQ/QNA plugin that includes an FAQ shortcode for your site. A simple jQuery animation is included to show/hide each question.
     
    5252== Changelog ==
    5353
     54= 0.5.3 =
     55Fixed an error with the show_categories shortcode.  This bug causes funny line breaks in some themes.
     56
    5457= 0.5.2 =
    5558Minor update to try and add better instructions for FAQ categories.
     
    7679== Upgrade Notice ==
    7780
     81= 0.5.3 =
     82Fixed an error with the show_categories shortcode.  This bug causes funny line breaks in some themes.
     83
    7884= 0.5.2 =
    7985Minor updated changing some instructions in the back-end.  Not a required update but recommended. 
  • wp-super-faq/trunk/wp_super_faq.php

    r463289 r465818  
    44Plugin URI: http://plugins.swampedpublishing.com/wp-super-faq
    55Description: A lightweight Wordpress Plugin that implements an FAQ page on your site using simple jQuery animation for a clean, usable interface.
    6 Version: 0.5.2
     6Version: 0.5.3
    77Author: rfrankel
    88Author URI: http://plugins.swampedpublishing.com/
     
    166166            // The Loop
    167167            while ($wp_super_faq_query->have_posts()) : $wp_super_faq_query->the_post();
    168                 $returner .= the_title(
    169                     "<h4><a class='wp-super-faq-question-closed' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i'
    170                             href='" . get_permalink() . "' title='" . the_title_attribute( 'echo=0' ) . "' rel='question'><span class='wp-super-faq-triangle'>&#9654;</span> ", '</a></h4>', false );
     168                $returner .= the_title( "<h4><a class='wp-super-faq-question-closed' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i' href='" . get_permalink() . "' title='" . the_title_attribute( 'echo=0' ) . "' rel='question'><span class='wp-super-faq-triangle'>&#9654;</span> ", '</a></h4>', false );
    171169       
    172170                $returner .= "<div class='wp-super-faq-answer' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i' style='display: none'>";
Note: See TracChangeset for help on using the changeset viewer.