Code Duplication    Length = 3-3 lines in 2 locations

main/inc/lib/system_announcements.lib.php 2 locations

@@ 235-237 (lines=3) @@
232
        $prev = ((int) $_GET['start'] - 19);
233
        $content = '';
234
        if (!isset($_GET['start']) || $_GET['start'] == 0) {
235
            if ($nb_announcement > 20) {
236
                $content .= '<a href="news_list.php?start='.$next.'">'.get_lang('NextBis').' >> </a>';
237
            }
238
        } else {
239
            echo '<a href="news_list.php?start='.$prev.'"> << '.get_lang('Prev').'</a>';
240
            if ($nb_announcement > 20) {
@@ 240-242 (lines=3) @@
237
            }
238
        } else {
239
            echo '<a href="news_list.php?start='.$prev.'"> << '.get_lang('Prev').'</a>';
240
            if ($nb_announcement > 20) {
241
                $content .= '<a href="news_list.php?start='.$next.'">'.get_lang('NextBis').' >> </a>';
242
            }
243
        }
244
        return $content;
245
    }