Version Description
- Fixed a number of minor styling issues
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.5.40 |
Comparing to | |
See all releases |
Code changes from version 1.5.39 to 1.5.40
- Functions/Full_Upgrade.php +7 -1
- Main.php +1 -1
- readme.txt +3 -0
Functions/Full_Upgrade.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
function EWD_UFAQ_Upgrade_To_Full() {
|
3 |
global $ewd_ufaq_message, $EWD_UFAQ_Full_Version;
|
4 |
|
5 |
-
$Key = $_POST['Key'];
|
6 |
|
7 |
if ($Key == "EWD Trial" and !get_option("EWD_UFAQ_Trial_Happening")) {
|
8 |
$ewd_urp_message = array("Message_Type" => "Update", "Message" => __("Trial successfully started!", 'ultimate-faqs'));
|
@@ -11,6 +11,12 @@ function EWD_UFAQ_Upgrade_To_Full() {
|
|
11 |
update_option("EWD_UFAQ_Trial_Happening", "Yes");
|
12 |
update_option("EWD_UFAQ_Full_Version", "Yes");
|
13 |
$EWD_UFAQ_Full_Version = get_option("EWD_UFAQ_Full_Version");
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
}
|
15 |
elseif ($Key != "EWD Trial") {
|
16 |
$opts = array('http'=>array('method'=>"GET"));
|
2 |
function EWD_UFAQ_Upgrade_To_Full() {
|
3 |
global $ewd_ufaq_message, $EWD_UFAQ_Full_Version;
|
4 |
|
5 |
+
$Key = trim($_POST['Key']);
|
6 |
|
7 |
if ($Key == "EWD Trial" and !get_option("EWD_UFAQ_Trial_Happening")) {
|
8 |
$ewd_urp_message = array("Message_Type" => "Update", "Message" => __("Trial successfully started!", 'ultimate-faqs'));
|
11 |
update_option("EWD_UFAQ_Trial_Happening", "Yes");
|
12 |
update_option("EWD_UFAQ_Full_Version", "Yes");
|
13 |
$EWD_UFAQ_Full_Version = get_option("EWD_UFAQ_Full_Version");
|
14 |
+
|
15 |
+
$Admin_Email = get_option('admin_email');
|
16 |
+
|
17 |
+
$opts = array('http'=>array('method'=>"GET"));
|
18 |
+
$context = stream_context_create($opts);
|
19 |
+
$Response = unserialize(file_get_contents("http://www.etoilewebdesign.com/UPCP-Key-Check/Register_Trial.php?Plugin=UFAQ&Admin_Email=" . $Admin_Email . "&Site=" . get_bloginfo('wpurl'), false, $context));
|
20 |
}
|
21 |
elseif ($Key != "EWD Trial") {
|
22 |
$opts = array('http'=>array('method'=>"GET"));
|
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.5.
|
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.5.40
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
readme.txt
CHANGED
@@ -268,6 +268,9 @@ Video 3 - FAQs Ordering
|
|
268 |
|
269 |
|
270 |
== Changelog ==
|
|
|
|
|
|
|
271 |
= 1.5.39 =
|
272 |
- Maintenance update (notices removed, pageload speed enhancements, small CSS fixes, etc.)
|
273 |
|
268 |
|
269 |
|
270 |
== Changelog ==
|
271 |
+
= 1.5.40 =
|
272 |
+
- Fixed a number of minor styling issues
|
273 |
+
|
274 |
= 1.5.39 =
|
275 |
- Maintenance update (notices removed, pageload speed enhancements, small CSS fixes, etc.)
|
276 |
|