Code Duplication    Length = 3-3 lines in 2 locations

htdocs/class/theme.php 2 locations

@@ 559-561 (lines=3) @@
556
        }
557
        $this->addLanguage($type, $language);
558
        // Load theme localization stylesheet and scripts if available
559
        if (file_exists($this->path . '/language/' . $language . '/script.js')) {
560
            $this->addScript($this->url . '/language/' . $language . '/script.js');
561
        }
562
        if (file_exists($this->path . '/language/' . $language . '/style.css')) {
563
            $this->addStylesheet($this->url . '/language/' . $language . '/style.css');
564
        }
@@ 562-564 (lines=3) @@
559
        if (file_exists($this->path . '/language/' . $language . '/script.js')) {
560
            $this->addScript($this->url . '/language/' . $language . '/script.js');
561
        }
562
        if (file_exists($this->path . '/language/' . $language . '/style.css')) {
563
            $this->addStylesheet($this->url . '/language/' . $language . '/style.css');
564
        }
565
566
        return true;
567
    }