Plugin Directory

Changeset 2549383


Ignore:
Timestamp:
06/17/2021 03:34:04 AM (5 years ago)
Author:
diversesolutions
Message:

Updating to version $dsphpversion

Location:
dsidxpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dsidxpress/trunk/admin.php

    r2538310 r2549383  
    15631563        $googleMapsAPIKey = esc_html($account_options->{'GoogleMapsAPIKey'});
    15641564        $sendNewVisitorEmails = esc_html($account_options->SendNewVisitorEmails);
     1565        $deferJavaScriptCode = esc_html($account_options->DeferJavaScriptCode);
    15651566
    15661567        if (substr($urlBase, strlen($urlBase), 1) != "/") $urlBase .= "/";
     
    17181719                            <input type="hidden" id="dsidxpress-SendNewVisitorEmails" name="<?php echo esc_attr(DSIDXPRESS_API_OPTIONS_NAME); ?>[SendNewVisitorEmails]" value="<?php echo $sendNewVisitorEmails;?>" />
    17191720                            <span class="description"></span>
     1721                        </td>
     1722                    </tr>
     1723                    <tr>
     1724                        <th>
     1725                            <label for="dsidxpress-DeferJavaScriptCodeCB">Support Frontend Optimization:</label>
     1726                        </th>
     1727                        <td>
     1728                            <input type="checkbox" id="dsidxpress-DeferJavaScriptCodeCB" size="50" <?php checked('true', strtolower($deferJavaScriptCode)); ?> onclick="dsIDXpressOptions.OptionCheckBoxClick(this);" /><br />
     1729                            <input type="hidden" id="dsidxpress-DeferJavaScriptCode" name="<?php echo esc_attr(DSIDXPRESS_API_OPTIONS_NAME); ?>[DeferJavaScriptCode]" value="<?php echo $deferJavaScriptCode;?>" />
     1730                            <span class="description">It defers inline JavaScript code and executes it when the Combo-JS is ready</span>
    17201731                        </td>
    17211732                    </tr>                   
  • dsidxpress/trunk/dsidxpress.php

    r2538310 r2549383  
    77Author: Diverse Solutions
    88Author URI: http://www.diversesolutions.com/
    9 Version: 3.14.0
     9Version: 3.14.1
    1010*/
    1111
  • dsidxpress/trunk/readme.txt

    r2538310 r2549383  
    44Requires at least: 4.5.0
    55Tested up to: 5.7
    6 Stable tag: 3.14.0
     6Stable tag: 3.14.1
    77Requires PHP: 5.4.0
    88
     
    120120
    121121== Changelog ==
     122
     123= 3.14.1 =
     124* Support Frontend Optimization
    122125
    123126= 3.14.0 =
Note: See TracChangeset for help on using the changeset viewer.