Created
April 23, 2014 15:36
-
-
Save alexkingorg/11220299 to your computer and use it in GitHub Desktop.
RAMP Session Token Debugging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In classes/deploy.class.php find this code on or around line 426: | |
<p>'.__('The batch session token does not match.', 'cf-deploy').'</p> | |
Replace that with: | |
<p>'.sprintf(__('The batch session token does not match. Expected "%s", received "%s"', 'cf-deploy'), esc_html($session_token), esc_html($args['batch_session_token'])).'</p> | |
This will show you the expected and received tokens. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment