PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.84
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.84
5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 All 160 releases
← All changes | WPDataAccess/Data_Apps/WPDA_App_Container.php +6 -1 5.5.765.5.84 View file →
@@ -65,8 +65,13 @@
65 65 return;
66 66 }
67 67
68 68 if ( ! $this->user_can_access( $app ) ) {
69 + if ( $this->pwa ) {
70 + esc_html_e( 'Not authorized', 'wp-data-access' );
71 + return;
72 + }
73 +
69 74 if ( ! $this->send_feedback() ) {
70 75 return;
71 76 }
72 77
@@ -221,9 +226,9 @@
221 226 ) {
222 227 // Check user login
223 228 $user_login = WPDA::get_current_user_login();
224 229 if ( ! in_array( $user_login, $app_settings['rest_api']['authorized_users'] ) ) {
225 - return false;
230 + return false;
226 231 }
227 232 }
228 233 }
229 234