GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 5-5 lines in 3 locations

symphony/content/content.publish.php 3 locations

@@ 790-794 (lines=5) @@
787
            // Previous
788
            $li = new XMLElement('li');
789
790
            if ($current_page > 1) {
791
                $li->appendChild(Widget::Anchor(__('← Previous'), Administration::instance()->getCurrentPageURL(). '?pg=' . ($current_page - 1).($filter_querystring ? "&" . $filter_querystring : '')));
792
            } else {
793
                $li->setValue(__('← Previous'));
794
            }
795
796
            $ul->appendChild($li);
797
@@ 822-826 (lines=5) @@
819
            // Next
820
            $li = new XMLElement('li');
821
822
            if ($current_page < $entries['total-pages']) {
823
                $li->appendChild(Widget::Anchor(__('Next &rarr;'), Administration::instance()->getCurrentPageURL(). '?pg=' . ($current_page + 1).($filter_querystring ? "&amp;" . $filter_querystring : '')));
824
            } else {
825
                $li->setValue(__('Next &rarr;'));
826
            }
827
828
            $ul->appendChild($li);
829
@@ 833-837 (lines=5) @@
830
            // Last
831
            $li = new XMLElement('li');
832
833
            if ($current_page < $entries['total-pages']) {
834
                $li->appendChild(Widget::Anchor(__('Last'), Administration::instance()->getCurrentPageURL(). '?pg=' . $entries['total-pages'].($filter_querystring ? "&amp;" . $filter_querystring : '')));
835
            } else {
836
                $li->setValue(__('Last'));
837
            }
838
839
            $ul->appendChild($li);
840