Skip to content
Snippets Groups Projects
Commit 96c7c4bb authored by lucha's avatar lucha Committed by agata
Browse files

Activation form uses post and not get methods now

Should fix issue #20
parent 88f82304
No related branches found
No related tags found
1 merge request!3Noblogs 5.4
......@@ -29,10 +29,10 @@
<p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p>
<form action="" method="get" class="standard-form" id="activation-form">
<form action="" method="post" class="standard-form" id="activation-form">
<label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label>
<input type="text" name="key" id="key" value="" />
<input type="text" name="key" id="key" value="<?php echo esc_attr( bp_get_current_activation_key() ); ?>" />
<p class="submit">
<input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ); ?>" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment