Changeset 2147646
- Timestamp:
- 08/29/2019 09:49:57 AM (7 years ago)
- Location:
- save-as-pdf/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
save-as-pdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
save-as-pdf/trunk/readme.txt
r2144912 r2147646 4 4 Requires at least: 4.1 5 5 Tested up to: 5.2.1 6 Stable tag: 1. 46 Stable tag: 1.5 7 7 Requires PHP: 5.2.4 8 8 License: GNUGPLv3 … … 55 55 == Changelog == 56 56 57 = 1.5 = 58 * Enhancement 59 57 60 = 1.4 = 58 61 * Big fix -
save-as-pdf/trunk/save-as-pdf.php
r2144912 r2147646 5 5 * Plugin URI: https://restpack.io/html2pdf 6 6 * Description: Allows visitors to save current page as PDF file 7 * Version: 1. 47 * Version: 1.5 8 8 * Text Domain: save-as-pdf 9 9 * Author: Restpack Inc … … 61 61 add_action('wp_ajax_restpack_ajax', array(&$this, 'restpack_ajax')); 62 62 add_action('wp_ajax_nopriv_restpack_ajax', array(&$this, 'restpack_ajax')); 63 64 if(isset($_REQUEST['action']) && $_REQUEST['action']=='restpack_ajax'){ 65 do_action( 'wp_ajax_restpack_ajax' ); 66 do_action( 'wp_ajax_nopriv_restpack_ajax'); 67 } 63 68 64 69 add_shortcode('restpackpdfbutton', array(&$this, 'shortcode'));
Note: See TracChangeset
for help on using the changeset viewer.