Changeset 1418876
- Timestamp:
- 05/17/2016 03:21:14 PM (10 years ago)
- Location:
- ezflippr/trunk
- Files:
-
- 3 edited
-
ezflippr.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
resources/install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ezflippr/trunk/ezflippr.php
r1410493 r1418876 4 4 * Plugin URI: http://www.nuagelab.com/wordpress-plugins/ezflippr 5 5 * Description: Adds rich flipbooks made from PDF through ezFlippr.com 6 * Version: 1.1.3 06 * Version: 1.1.31 7 7 * Author: NuageLab <wordpress-plugins@nuagelab.com> 8 8 * Author URI: http://www.nuagelab.com/wordpress-plugins … … 1084 1084 if (file_exists($dir . DIRECTORY_SEPARATOR . $name)) { 1085 1085 $hash = md5(file_get_contents($dir . DIRECTORY_SEPARATOR . $name)); 1086 echo $name;1087 1086 } 1088 1087 -
ezflippr/trunk/readme.txt
r1410493 r1418876 3 3 Tags: flipbook, administration 4 4 Requires at least: 3.9 5 Tested up to: 4.5. 15 Tested up to: 4.5.2 6 6 Stable tag: trunk 7 7 Text Domain: ezflippr … … 89 89 90 90 == Changelog == 91 = 1.1.31 = 92 * Fixed bug with JSON install. 93 91 94 = 1.1.30 = 92 95 * Fixed bug with url_fopen POST parameters. Thanks to Chris Backes for reporting this. … … 192 195 * First released version. Tested internally with about 10 sites. 193 196 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 spaces203 204 = 1.1.24 =205 * Improved AJAX installation206 207 = 1.1.23 =208 * Enable "Add new" button and made it point to ezflippr.com209 210 = 1.1.22 =211 * Added deleted flipbooks recovery.212 213 = 1.1.21 =214 * Fixed bug upon activation215 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.x225 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 display234 235 = 1.1.14 =236 * Added link to jump to flipbooks list quickly237 238 = 1.1.13 =239 * Fixed bug with TinyMCE plugin240 241 = 1.1.12 =242 * Fixed bug with cURL communication method when allow_url_fopen is off243 244 = 1.1.11 =245 * Fixed height problem with short code246 247 = 1.1.10 =248 * Added uploads directory writability verification and warning messages249 250 = 1.1.8 =251 * Added contact form in ezFlippr menu252 * Added loading message during refresh and key verification253 254 = 1.1.7 =255 * Added flipbook shortcode button to visual editor256 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 translation262 263 = 1.1.3 =264 * Fixed problem with access key sometimes not being sent265 266 = 1.1.2 =267 * Added AJAX install/reinstall/uninstall268 269 = 1.1.1 =270 * Fixed early call to is_admin() causing a bug in the admin once in a while271 272 = 1.1 =273 * Added notice when flipbooks are modified/bought274 * Moved flush_rewrite_rules to activation hook rather than registration275 197 276 198 == Translations == -
ezflippr/trunk/resources/install.php
r1348375 r1418876 6 6 7 7 $json = ((array_key_exists('json', $_GET)) && ($_GET['json'])); 8 if ($json) { 9 header('Content-Type: application/json'); 10 } 8 11 9 12 $postID = $_GET['post']; … … 16 19 17 20 if ($json) { 18 header('Content-Type: application/json');19 21 if (is_array($res)) { 20 22 echo json_encode(array(
Note: See TracChangeset
for help on using the changeset viewer.