We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 102bbdd commit d29d4ddCopy full SHA for d29d4dd
plugins/wpgraphql-logging/src/Admin/ViewLogsPage.php
@@ -281,7 +281,7 @@ protected function process_log_download(): void {
281
*/
282
protected function render_view_page(): void {
283
$log_id = isset( $_GET['log'] ) ? absint( $_GET['log'] ) : 0;
284
- $this->verify_admin_page_nonce( self::ADMIN_PAGE_DOWNLOAD_NONCE . '_' . $log_id );
+ $this->verify_admin_page_nonce( self::ADMIN_PAGE_VIEW_NONCE . '_' . $log_id );
285
286
if ( 0 === (int) $log_id ) {
287
echo '<div class="notice notice-error"><p>' . esc_html__( 'Invalid log ID.', 'wpgraphql-logging' ) . '</p></div>';
0 commit comments