PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | app/Agent/PostBlockFinder.php +5 -0 3.1.63.2.1 View file →
@@ -26,8 +26,13 @@
26 26 if (in_array($block['blockName'], TagBlocks::$ignored, true)) {
27 27 continue;
28 28 }
29 29
30 + // Numbered off the post it renders from, never this one.
31 + if (isset(TagBlocks::$refContainers[$block['blockName']])) {
32 + continue;
33 + }
34 +
30 35 $seq++;
31 36 $list[$i][self::REF_KEY] = $seq;
32 37 if (!empty($block['innerBlocks'])) {
33 38 $list[$i]['innerBlocks'] = $walk($block['innerBlocks']);