Code Duplication    Length = 5-5 lines in 2 locations

include/patTemplate.php 2 locations

@@ 1072-1076 (lines=5) @@
1069
            //  Strip unsused vars
1070
            $this->stripUnusedVars($name, $temp);
1071
1072
            if ($mode === 'a') {
1073
                $this->parsed_templates[$name] .= $temp;
1074
            } elseif ($mode === 'w') {
1075
                $this->parsed_templates[$name] = $temp;
1076
            }
1077
        }
1078
1079
        /**
@@ 1126-1130 (lines=5) @@
1123
            //  Strip unsused vars
1124
            $this->stripUnusedVars($name, $temp);
1125
1126
            if ($mode === 'a') {
1127
                $this->parsed_templates[$name] .= $temp;
1128
            } elseif ($mode === 'w') {
1129
                $this->parsed_templates[$name] = $temp;
1130
            }
1131
        }
1132
1133
        /**