Changeset 1985349
- Timestamp:
- 12/04/2018 06:11:14 PM (7 years ago)
- Location:
- flowpaper-lite-pdf-flipbook/trunk
- Files:
-
- 2 edited
-
flowpaper.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flowpaper-lite-pdf-flipbook/trunk/flowpaper.php
r1914413 r1985349 4 4 Plugin URI: https://wordpress.org/plugins/flowpaper-lite-pdf-flipbook 5 5 Description: Shortcode for adding a PDF flipbook to a post: [flipbook pdf="http://yourwebsite.com/yourdocument.pdf"]. Replace the URL with a URL to a PDF document you want to publish. 6 Version: 1.9. 06 Version: 1.9.1 7 7 Author: Devaldi Ltd 8 8 Author URI: https://flowpaper.com … … 10 10 */ 11 11 12 define('FLOWPAPER_PLUGIN_VERSION', '1.9. 0');12 define('FLOWPAPER_PLUGIN_VERSION', '1.9.1'); 13 13 14 14 function flowpaper_plugin_parse_request($wp) { … … 337 337 338 338 if(strtolower($attr) == 'pdf'){ // append url at the end of the base url 339 if(strpos($value,'publ.flowpaper.com') > 0 || strpos($value,'online.flowpaper.com') > 0 ){339 if(strpos($value,'publ.flowpaper.com') > 0 || strpos($value,'online.flowpaper.com') > 0 || !strpos(strtolower($value),'.pdf')){ 340 340 $pdfUrl = esc_attr( $value ); 341 341 $cloudhosted = true; … … 388 388 389 389 if(strtolower($attr) == 'pdf'){ // append url at the end of the base url 390 if(strpos($value,'publ.flowpaper.com') > 0 || strpos($value,'online.flowpaper.com') > 0 ){390 if(strpos($value,'publ.flowpaper.com') > 0 || strpos($value,'online.flowpaper.com') > 0 || !strpos(strtolower($value),'.pdf')){ 391 391 $pdfUrl = esc_attr( $value ); 392 392 $cloudhosted = true; -
flowpaper-lite-pdf-flipbook/trunk/readme.txt
r1914414 r1985349 170 170 * Resolved a function that was conflicting with woocommerce 171 171 172 = 1.9.1 = 173 * Improved the ability to embed self hosted publications created with the desktop publisher 174 172 175 == Installation == 173 176
Note: See TracChangeset
for help on using the changeset viewer.