Version Description
- Quick fix for extensions ajax calls
Download this release
Release Info
Developer | vasyl_m |
Plugin | Advanced Access Manager |
Version | 3.2.3 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.2.3
- Application/Backend/View.php +3 -1
- aam.php +1 -1
- readme.txt +4 -1
Application/Backend/View.php
CHANGED
@@ -96,7 +96,9 @@ class AAM_Backend_View {
|
|
96 |
} elseif (count($parts) == 2) { //cover the Model.method pattern
|
97 |
try {
|
98 |
$classname = 'AAM_Backend_' . $parts[0];
|
99 |
-
|
|
|
|
|
100 |
} catch (Exception $e) {
|
101 |
$response = $e->getMessage();
|
102 |
}
|
96 |
} elseif (count($parts) == 2) { //cover the Model.method pattern
|
97 |
try {
|
98 |
$classname = 'AAM_Backend_' . $parts[0];
|
99 |
+
if (class_exists($classname)) {
|
100 |
+
$response = call_user_func(array(new $classname, $parts[1]));
|
101 |
+
}
|
102 |
} catch (Exception $e) {
|
103 |
$response = $e->getMessage();
|
104 |
}
|
aam.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
Plugin Name: Advanced Access Manager
|
5 |
Description: Manage User and Role Access to WordPress Backend and Frontend.
|
6 |
-
Version: 3.2.
|
7 |
Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
Author URI: http://www.vasyltech.com
|
9 |
|
3 |
/**
|
4 |
Plugin Name: Advanced Access Manager
|
5 |
Description: Manage User and Role Access to WordPress Backend and Frontend.
|
6 |
+
Version: 3.2.3
|
7 |
Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
Author URI: http://www.vasyltech.com
|
9 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: vasyltech
|
|
3 |
Tags: access, role, user, capability, page, post, permission, security
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5.2
|
6 |
-
Stable tag: 3.2.
|
7 |
|
8 |
One of the best tools in WordPress repository to manage access to your posts,
|
9 |
pages, categories and backend area for users, roles and visitors.
|
@@ -45,6 +45,9 @@ out more about the Advanced Access Manager.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
48 |
= 3.2.2 =
|
49 |
* Improved AAM security reported by James Golovich from Pritect
|
50 |
* Extended core to allow manage access to AAM features via ConfigPress
|
3 |
Tags: access, role, user, capability, page, post, permission, security
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5.2
|
6 |
+
Stable tag: 3.2.3
|
7 |
|
8 |
One of the best tools in WordPress repository to manage access to your posts,
|
9 |
pages, categories and backend area for users, roles and visitors.
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 3.2.3 =
|
49 |
+
* Quick fix for extensions ajax calls
|
50 |
+
|
51 |
= 3.2.2 =
|
52 |
* Improved AAM security reported by James Golovich from Pritect
|
53 |
* Extended core to allow manage access to AAM features via ConfigPress
|