Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aurovrata committed Jan 21, 2017
1 parent 7133669 commit f26d5df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/class-cf7-multislide-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,12 @@ function intermediate_slides($cf7) {
* @return array merged list of data fields from all slides if this is last slide.
*/
function merge_all_slide_posted_data($posted_data){
//error_log("Multislide INITIAL data: \n".print_r($posted_data,true));
//Is this a multislide form?
$security = $posted_data['cf7slide_security'];
if( empty($security) ){
if( !isset($posted_data['cf7slide_security']) ){
return $posted_data;
}
$security = $posted_data['cf7slide_security'];


$current_slide = $posted_data['current_slide'];
$total_slides = $posted_data['total_slides'];
Expand Down

0 comments on commit f26d5df

Please sign in to comment.