Plugin Directory

Changeset 1418876


Ignore:
Timestamp:
05/17/2016 03:21:14 PM (10 years ago)
Author:
nuagelab
Message:

Version 1.1.31: Fixed bug with JSON install.

Location:
ezflippr/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ezflippr/trunk/ezflippr.php

    r1410493 r1418876  
    44* Plugin URI: http://www.nuagelab.com/wordpress-plugins/ezflippr
    55* Description: Adds rich flipbooks made from PDF through ezFlippr.com
    6 * Version: 1.1.30
     6* Version: 1.1.31
    77* Author: NuageLab <wordpress-plugins@nuagelab.com>
    88* Author URI: http://www.nuagelab.com/wordpress-plugins
     
    10841084                        if (file_exists($dir . DIRECTORY_SEPARATOR . $name)) {
    10851085                            $hash = md5(file_get_contents($dir . DIRECTORY_SEPARATOR . $name));
    1086                             echo $name;
    10871086                        }
    10881087
  • ezflippr/trunk/readme.txt

    r1410493 r1418876  
    33Tags: flipbook, administration
    44Requires at least: 3.9
    5 Tested up to: 4.5.1
     5Tested up to: 4.5.2
    66Stable tag: trunk
    77Text Domain: ezflippr
     
    8989
    9090== Changelog ==
     91= 1.1.31 =
     92* Fixed bug with JSON install.
     93
    9194= 1.1.30 =
    9295* Fixed bug with url_fopen POST parameters. Thanks to Chris Backes for reporting this.
     
    192195* First released version. Tested internally with about 10 sites.
    193196
    194 == Upgrade Notice ==
    195 = 1.1.27 =
    196 * Fix bug with PDF download.
    197 
    198 = 1.1.26 =
    199 * Removed Flipbooks menu for users not having the edit_pages capability.
    200 
    201 = 1.1.25 =
    202 * Fixed bug with installation of flipbooks containing spaces
    203 
    204 = 1.1.24 =
    205 * Improved AJAX installation
    206 
    207 = 1.1.23 =
    208 * Enable "Add new" button and made it point to ezflippr.com
    209 
    210 = 1.1.22 =
    211 * Added deleted flipbooks recovery.
    212 
    213 = 1.1.21 =
    214 * Fixed bug upon activation
    215 
    216 = 1.1.20 =
    217 * Fixed bug with rewrite rules flush.
    218 * Tweaked compatibility fix for slow connections / large flipbooks with certain configurations.
    219 
    220 = 1.1.19 =
    221 * Added safe mode compatibility fix for slow connections / large flipbooks.
    222 
    223 = 1.1.18 =
    224 * Fixed compatibility problem with PHP 5.2.x
    225 
    226 = 1.1.17 =
    227 * Fixed problem with page change on iOS.
    228 
    229 = 1.1.16 =
    230 * Fixed problem with background color customization.
    231 
    232 = 1.1.15 =
    233 * Added error display
    234 
    235 = 1.1.14 =
    236 * Added link to jump to flipbooks list quickly
    237 
    238 = 1.1.13 =
    239 * Fixed bug with TinyMCE plugin
    240 
    241 = 1.1.12 =
    242 * Fixed bug with cURL communication method when allow_url_fopen is off
    243 
    244 = 1.1.11 =
    245 * Fixed height problem with short code
    246 
    247 = 1.1.10 =
    248 * Added uploads directory writability verification and warning messages
    249 
    250 = 1.1.8 =
    251 * Added contact form in ezFlippr menu
    252 * Added loading message during refresh and key verification
    253 
    254 = 1.1.7 =
    255 * Added flipbook shortcode button to visual editor
    256 
    257 = 1.1.6 =
    258 * Added alternate download methods for low memory and allow_url_fopen=off hostings such as 1&1 and GoDaddy.
    259 
    260 = 1.1.5 =
    261 * Added Spanish translation
    262 
    263 = 1.1.3 =
    264 * Fixed problem with access key sometimes not being sent
    265 
    266 = 1.1.2 =
    267 * Added AJAX install/reinstall/uninstall
    268 
    269 = 1.1.1 =
    270 * Fixed early call to is_admin() causing a bug in the admin once in a while
    271 
    272 = 1.1 =
    273 * Added notice when flipbooks are modified/bought
    274 * Moved flush_rewrite_rules to activation hook rather than registration
    275197
    276198== Translations ==
  • ezflippr/trunk/resources/install.php

    r1348375 r1418876  
    66
    77$json = ((array_key_exists('json', $_GET)) && ($_GET['json']));
     8if ($json) {
     9    header('Content-Type: application/json');
     10}
    811
    912$postID     = $_GET['post'];
     
    1619
    1720if ($json) {
    18     header('Content-Type: application/json');
    1921    if (is_array($res)) {
    2022        echo json_encode(array(
Note: See TracChangeset for help on using the changeset viewer.