Created
April 23, 2014 15:36
-
-
Save alexkingorg/11220299 to your computer and use it in GitHub Desktop.
Revisions
-
alexkingorg created this gist
Apr 23, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ 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.