Plugin Directory

Changeset 2057337


Ignore:
Timestamp:
03/26/2019 06:33:36 AM (7 years ago)
Author:
zingtree
Message:

fixed parms error from 6.02

Location:
zingtree
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • zingtree/readme.txt

    r2057334 r2057337  
    22Contributors: Zingtree
    33Donate link: https://zingtree.com
    4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, ecommerce
     4Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, call script
    55Requires at least: 3.0
    66Tested up to: 5.11
    7 Stable tag: 6.02
     7Stable tag: 6.03
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    8181== Changelog ==
    8282
    83 = 6.02 =
     83= 6.03 =
    8484Added other_parameters, disable_scroll, scroll_parent_to_top options
    8585
  • zingtree/trunk/readme.txt

    r2057331 r2057337  
    22Contributors: Zingtree
    33Donate link: https://zingtree.com
    4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, ecommerce
     4Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, call script
    55Requires at least: 3.0
    66Tested up to: 5.11
    7 Stable tag: 6.02
     7Stable tag: 6.03
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    8181== Changelog ==
    8282
    83 = 6.02 =
     83= 6.03 =
    8484Added other_parameters, disable_scroll, scroll_parent_to_top options
    8585
  • zingtree/trunk/zingtree.php

    r2057331 r2057337  
    44Plugin URI: http://wordpress.org/plugins/zingtree/
    55Description: [zingtree name="Zingtree" id="123456789" ] shortcode
    6 Version: 6.02
     6Version: 6.03
    77Author: Zingtree
    88Author URI: https://zingtree.com
     
    8888// disable scroll (set to 1 by defaiult)
    8989    if ($atts['disable_scroll'] == 'yes')
    90         $parms = "&disable_scroll=1" ;
     90        $parms .= "&disable_scroll=1" ;
    9191    else
    92         $parms = "&disable_scroll=1" ;
     92        $parms .= "&disable_scroll=1" ;
    9393       
    9494// scroll_parent_to_top       
    9595    if ($atts['scroll_parent_to_top'] == 'yes')
    96         $parms = "&scroll_parent_to_top=1" ;
     96        $parms .= "&scroll_parent_to_top=1" ;
    9797   
    9898   
  • zingtree/zingtree.php

    r2057334 r2057337  
    44Plugin URI: http://wordpress.org/plugins/zingtree/
    55Description: [zingtree name="Zingtree" id="123456789" ] shortcode
    6 Version: 6.02
     6Version: 6.03
    77Author: Zingtree
    88Author URI: https://zingtree.com
     
    8888// disable scroll (set to 1 by defaiult)
    8989    if ($atts['disable_scroll'] == 'yes')
    90         $parms = "&disable_scroll=1" ;
     90        $parms .= "&disable_scroll=1" ;
    9191    else
    92         $parms = "&disable_scroll=1" ;
     92        $parms .= "&disable_scroll=1" ;
    9393       
    9494// scroll_parent_to_top       
    9595    if ($atts['scroll_parent_to_top'] == 'yes')
    96         $parms = "&scroll_parent_to_top=1" ;
     96        $parms .= "&scroll_parent_to_top=1" ;
    9797   
    9898   
Note: See TracChangeset for help on using the changeset viewer.