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/API/WPDA_QB.php +6 -19 5.5.765.5.84 View file →
@@ -264,9 +264,8 @@
264 264 $name = $request->get_param( 'name' );
265 265 $query = $request->get_param( 'query' );
266 266 $is_visual = '1' === $request->get_param( 'is_visual' );
267 267 $vqb = $request->get_param( 'vqb' );
268 - WPDA::wpda_log_wp_error( $vqb );
269 268 $old_name = $request->get_param( 'old_name' ) ?? '';
270 269 $insert = '1' === $request->get_param( 'insert' );
271 270 $params = $request->get_param( 'params' );
272 271 $qb = new WPDA_Query_Builder();
@@ -410,31 +409,19 @@
410 409 }
411 410 }
412 411
413 412 public function cron_schedules( $request ) {
414 - if ( !$this->current_user_can_access() ) {
415 - return $this->unauthorized();
416 - }
417 - if ( !$this->current_user_token_valid( $request ) ) {
418 - return $this->invalid_nonce();
419 - }
413 + // This feature is implemented in the premium version
414 + return $this->unauthorized();
420 415 }
421 416
422 417 public function cron_add( $request ) {
423 - if ( !$this->current_user_can_access() ) {
424 - return $this->unauthorized();
425 - }
426 - if ( !$this->current_user_token_valid( $request ) ) {
427 - return $this->invalid_nonce();
428 - }
418 + // This feature is implemented in the premium version
419 + return $this->unauthorized();
429 420 }
430 421
431 422 public function cron_delete( $request ) {
432 - if ( !$this->current_user_can_access() ) {
433 - return $this->unauthorized();
434 - }
435 - if ( !$this->current_user_token_valid( $request ) ) {
436 - return $this->invalid_nonce();
437 - }
423 + // This feature is implemented in the premium version
424 + return $this->unauthorized();
438 425 }
439 426
440 427 }