display_sequence fix
-
Hi!
I couldn’t get the display_sequence working so I changed the line (98)
$displaySequence = explode(",", $dataFlags["display_sequence"]);
to
/* Check if we have a supplied display_sequence that should override our default */ if(isset($args["display_sequence"])) { $displaySequence = explode(",", $args["display_sequence"]); } else { $displaySequence = explode(",", $dataFlags["display_sequence"]); }
and now it works! But I only peeked into the code so maybe the fix should go somewhere else…
- The topic ‘display_sequence fix’ is closed to new replies.