Code Duplication    Length = 8-8 lines in 2 locations

htdocs/class/xml/rss/xmlrss2parser.php 1 location

@@ 154-161 (lines=8) @@
151
     * @param string $delim
152
     * @return void
153
     */
154
    public function setTempArr($name, &$value, $delim = '')
155
    {
156
        if (!isset($this->_tempArr[$name])) {
157
            $this->_tempArr[$name] = $value;
158
        } else {
159
            $this->_tempArr[$name] .= $delim . $value;
160
        }
161
    }
162
163
    /**
164
     * @return array

htdocs/class/xml/themesetparser.php 1 location

@@ 131-138 (lines=8) @@
128
     * @param string $delim
129
     * @return void
130
     */
131
    public function setTempArr($name, &$value, $delim = '')
132
    {
133
        if (!isset($this->tempArr[$name])) {
134
            $this->tempArr[$name] = $value;
135
        } else {
136
            $this->tempArr[$name] .= $delim . $value;
137
        }
138
    }
139
140
    /**
141
     * @return array