Plugin Directory

Changeset 1629999


Ignore:
Timestamp:
04/05/2017 10:47:10 AM (9 years ago)
Author:
heliossolutions
Message:

Added Security options

Location:
hs-simple-faq/trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • hs-simple-faq/trunk/hs-simple-faq.php

    r1626349 r1629999  
    44 * Plugin URI: http://heliossolutions.in/
    55 * Description: Hs simple and responsive faq plugin is the simplest wordpress responsive faq plugin.
    6  * Version: 4.0.1
     6 * Version: 4.0.0
    77 * Author: Helios Solutions
    88 * Author URI: http://heliossolutions.in/
    99 */
     10
     11 if ( ! defined( 'ABSPATH' ) ) {
     12    echo "Hi there! Nice try. Come again.";
     13    die();
     14}
     15
    1016$plugin_url = WP_PLUGIN_URL . '/hs-simple-faq';
    1117$options = array();
  • hs-simple-faq/trunk/inc/front-end.php

    r1178253 r1629999  
    11<?php
     2 if ( ! defined( 'ABSPATH' ) ) {
     3    echo "Hi there! Nice try. Come again.";
     4    die();
     5}
    26
    37$i = 1;
     
    5559    echo '<div class="hs-faq-accordion">';
    5660    while ($query->have_posts()) : $query->the_post();
    57 
    5861        $i = get_the_ID();
    5962        $title = get_the_title();
  • hs-simple-faq/trunk/inc/hs-faq-option-page.php

    r1178253 r1629999  
     1<?php
     2 if ( ! defined( 'ABSPATH' ) ) {
     3    echo "Hi there! Nice try. Come again.";
     4    die();
     5}
     6
     7?>
    18<div class="wrap">
    29   
  • hs-simple-faq/trunk/inc/js/custom-faq.js

    r1626346 r1629999  
    1313        heightStyle: "content"
    1414    });
    15     jQuery( "#toggle" ).button().click(function() {
    16       if ( $( ".hs-faq-accordion" ).accordion( "option", "icons" ) ) {
     15   jQuery( "#toggle" ).button().click(function() {
     16      if ( jQuery( ".hs-faq-accordion" ).accordion( "option", "icons" ) ) {
    1717        jQuery( ".hs-faq-accordion" ).accordion( "option", "icons", null );
    1818      } else {
  • hs-simple-faq/trunk/readme.txt

    r1625793 r1629999  
    66License URI: http://www.gnu.org/licenses/gpl-2.0.html
    77Tested up to: 4.7.3
    8 Stable tag: 4.0.1
     8Stable tag: 4.0.2
    99
    1010Simple and responsive faq plugin.
     
    105105== Changelog ==
    106106
     107= 4.0.2 =
     108* Enhancement: Security options
     109* Bug fixes
     110
    107111= 4.0.1 =
    108112* Compatibility with wordpress version 4.7.3
     
    141145== Upgrade Notice ==
    142146
     147= 4.0.2 =
     148* Enhancement: Security options
     149* Bug fixes
     150
    143151= 4.0.1 =
    144152* Compatibility with wordpress version 4.7.3
Note: See TracChangeset for help on using the changeset viewer.