Version Description
- Fix: Minor security update
Download this release
Release Info
Developer | infinitewp |
Plugin | InfiniteWP Client |
Version | 1.2.8 |
Comparing to | |
See all releases |
Code changes from version 1.2.7 to 1.2.8
- helper.class.php +7 -5
- init.php +2 -2
- readme.txt +3 -0
helper.class.php
CHANGED
@@ -348,11 +348,13 @@ class IWP_MMB_Helper
|
|
348 |
|
349 |
$current_message = $this->get_client_message_id();
|
350 |
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
|
|
|
|
356 |
$pl_key = $this->get_admin_panel_public_key();
|
357 |
if (!$pl_key) {
|
358 |
return array(
|
348 |
|
349 |
$current_message = $this->get_client_message_id();
|
350 |
|
351 |
+
if(isset($_GET['auto_login'])){//temp fix for stopping reuse of open admin url
|
352 |
+
if ((int) $current_message >= (int) $message_id)
|
353 |
+
return array(
|
354 |
+
'error' => 'Invalid message recieved.'
|
355 |
+
);
|
356 |
+
}
|
357 |
+
|
358 |
$pl_key = $this->get_admin_panel_public_key();
|
359 |
if (!$pl_key) {
|
360 |
return array(
|
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: InfiniteWP - Client
|
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
-
Version: 1.2.
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
@@ -26,7 +26,7 @@ Author URI: http://www.revmakx.com
|
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
-
define('IWP_MMB_CLIENT_VERSION', '1.2.
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
+
Version: 1.2.8
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
+
define('IWP_MMB_CLIENT_VERSION', '1.2.8');
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
readme.txt
CHANGED
@@ -48,6 +48,9 @@ Credits: [Vladimir Prelovac](http://prelovac.com/vladimir) for his worker plugin
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 1.2.7 =
|
52 |
* Fix: Activation failed on multiple plugin installation is fixed
|
53 |
* Fix: Dropbox class name conflit with other plugins is fixed
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.2.8 =
|
52 |
+
* Fix: Minor security update
|
53 |
+
|
54 |
= 1.2.7 =
|
55 |
* Fix: Activation failed on multiple plugin installation is fixed
|
56 |
* Fix: Dropbox class name conflit with other plugins is fixed
|