Code Duplication    Length = 4-8 lines in 2 locations

web_interface/astpp/system/core/Config.php 1 location

@@ 143-150 (lines=8) @@
140
141
			if ($use_sections === TRUE)
142
			{
143
				if (isset($this->config[$file]))
144
				{
145
					$this->config[$file] = array_merge($this->config[$file], $config);
146
				} else
147
				{
148
					$this->config[$file] = $config;
149
				}
150
			} else
151
			{
152
				$this->config = array_merge($this->config, $config);
153
			}

web_interface/astpp/application/libraries/html2pdf/_class/parsingCss.class.php 1 location

@@ 1757-1760 (lines=4) @@
1754
                if (strpos($name, ':') !== false) continue;
1755
1756
                // save the value
1757
                if ( ! isset($this->css[$name]))
1758
                    $this->css[$name] = $css;
1759
                else
1760
                    $this->css[$name] = array_merge($this->css[$name], $css);
1761
1762
            }
1763
        }