PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 2.0.11 All 82 releases
← All changes | app/Controllers/DifficultyLevelController.php +5 -1 3.0.2.6trunk View file →
@@ -80,9 +80,13 @@
80 80 case 'PATCH':
81 81 case 'DELETE':
82 82 return current_user_can('yatra_edit_trips');
83 83 default:
84 - return current_user_can('manage_options');
84 + // Unknown HTTP method — deny explicitly. The earlier
85 + // fallback to `manage_options` was a regression that
86 + // silently broadened admin-only access for any verb not
87 + // in the explicit switch.
88 + return false;
85 89 }
86 90 }
87 91
88 92 public function get_items(WP_REST_Request $request)