Version Description
- Update to fix class conflict with PHPSpreadsheet if using more than one of our plugins
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.8.7 |
Comparing to | |
See all releases |
Code changes from version 1.8.6 to 1.8.7
- Functions/EWD_UFAQ_Export.php +1 -1
- Functions/EWD_UFAQ_Import.php +1 -1
- Main.php +1 -1
- readme.txt +3 -0
Functions/EWD_UFAQ_Export.php
CHANGED
@@ -68,7 +68,7 @@ function EWD_UFAQ_Export_To_PDF() {
|
|
68 |
}
|
69 |
}
|
70 |
|
71 |
-
require_once EWD_UFAQ_CD_PLUGIN_PATH . 'PHPSpreadsheet/vendor/autoload.php';
|
72 |
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
73 |
use PhpOffice\PhpSpreadsheet\Writer\Xls;
|
74 |
use PhpOffice\PhpSpreadsheet\Writer\Csv;
|
68 |
}
|
69 |
}
|
70 |
|
71 |
+
if (!class_exists('ComposerAutoloaderInit4618f5c41cf5e27cc7908556f031e4d4')) {require_once EWD_UFAQ_CD_PLUGIN_PATH . 'PHPSpreadsheet/vendor/autoload.php';}
|
72 |
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
73 |
use PhpOffice\PhpSpreadsheet\Writer\Xls;
|
74 |
use PhpOffice\PhpSpreadsheet\Writer\Csv;
|
Functions/EWD_UFAQ_Import.php
CHANGED
@@ -37,7 +37,7 @@ function EWD_UFAQ_Import(){
|
|
37 |
echo $wpdb->last_query;
|
38 |
}
|
39 |
|
40 |
-
require_once EWD_UFAQ_CD_PLUGIN_PATH . 'PHPSpreadsheet/vendor/autoload.php';
|
41 |
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
42 |
function Add_EWD_UFAQs_From_Spreadsheet($Excel_File_Name){
|
43 |
global $wpdb;
|
37 |
echo $wpdb->last_query;
|
38 |
}
|
39 |
|
40 |
+
if (!class_exists('ComposerAutoloaderInit4618f5c41cf5e27cc7908556f031e4d4')) {require_once EWD_UFAQ_CD_PLUGIN_PATH . 'PHPSpreadsheet/vendor/autoload.php';}
|
41 |
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
42 |
function Add_EWD_UFAQs_From_Spreadsheet($Excel_File_Name){
|
43 |
global $wpdb;
|
Main.php
CHANGED
@@ -7,7 +7,7 @@ Author: Etoile Web Design
|
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: ultimate-faqs
|
10 |
-
Version: 1.8.
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: ultimate-faqs
|
10 |
+
Version: 1.8.7
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
readme.txt
CHANGED
@@ -270,6 +270,9 @@ Video 3 - FAQs Ordering
|
|
270 |
|
271 |
|
272 |
== Changelog ==
|
|
|
|
|
|
|
273 |
= 1.8.6 =
|
274 |
- Update to fix same-page permalinks
|
275 |
- Update to fix sidebar misalignment issue when Group By Category is enabled
|
270 |
|
271 |
|
272 |
== Changelog ==
|
273 |
+
= 1.8.7 =
|
274 |
+
- Update to fix class conflict with PHPSpreadsheet if using more than one of our plugins
|
275 |
+
|
276 |
= 1.8.6 =
|
277 |
- Update to fix same-page permalinks
|
278 |
- Update to fix sidebar misalignment issue when Group By Category is enabled
|