PluginProbe
The WP Remote WordPress Plugin / trunk
The WP Remote WordPress Plugin vtrunk
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
← All changes | wp_admin.php +2 -0 6.48trunk View file →
@@ -175,8 +175,9 @@
175 175 require_once dirname( __FILE__ ) . '/recover.php';
176 176 $bvnonce = wp_create_nonce("bvnonce");
177 177 $public = WPRAccount::getApiPublicKey($this->settings);
178 178 $secret = WPRRecover::defaultSecret($this->settings);
179 + $ctag = WPRRecover::connectionTag($this->settings);
179 180 $server_ip = WPRHelper::getStringParamEscaped('SERVER', 'SERVER_ADDR', 'attr');
180 181 $tags = "<input type='hidden' name='url' value='".esc_attr($this->siteinfo->wpurl())."'/>\n".
181 182 "<input type='hidden' name='homeurl' value='".esc_attr($this->siteinfo->homeurl())."'/>\n".
182 183 "<input type='hidden' name='siteurl' value='".esc_attr($this->siteinfo->siteurl())."'/>\n".
@@ -186,8 +187,9 @@
186 187 "<input type='hidden' name='bvversion' value='".esc_attr($this->bvinfo->version)."'/>\n".
187 188 "<input type='hidden' name='serverip' value='".$server_ip."'/>\n".
188 189 "<input type='hidden' name='abspath' value='".esc_attr(ABSPATH)."'/>\n".
189 190 "<input type='hidden' name='secret' value='".esc_attr($secret)."'/>\n".
191 + "<input type='hidden' name='bvctag' value='".esc_attr($ctag)."'/>\n".
190 192 "<input type='hidden' name='public' value='".esc_attr($public)."'/>\n".
191 193 "<input type='hidden' name='bvnonce' value='".esc_attr($bvnonce)."'/>\n";
192 194 return $tags;
193 195 }