WPIntell

Source evidence

URL Redirection issue

Age Verify · support · 2015-09-24T11:57:00+00:00

complaintsentiment
mediumseverity
0.75relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 31 rows with source links

9.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

28 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
MrTomAsh unresolved
Hello, please attach that to the future version of your plugin to keep it more flexible: $url_connector = (empty($_GET) ? '?' : '&'); wp_redirect( esc_url_raw( $redirect_url ) . $url_connector .'age-verified=' . wp_create_nonce( 'age-verified' ) ); in file class-age-verify.php on line 359. Without that I get two question marks in url address. Cheers! https://wordpress.org/plugins/age-verify/ I have experienced this issue as well. However, I feel that using add_query_arg() would be a better practice: wp_redirect( esc_url_raw( add_query_arg( 'age-verified', wp_create_nonce( 'age-verified' ), $redirect_url ) ) ); I have tested this and it seems to work great.

Comments

1 shown
dale3h 2015-11-18T13:21:00+00:00

I have experienced this issue as well. However, I feel that using add_query_arg() would be a better practice: wp_redirect( esc_url_raw( add_query_arg( 'age-verified', wp_create_nonce( 'age-verified' ), $redirect_url ) ) ); I have tested this and it seems to work great.