Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 1040-1046 (lines=7) @@
1037
        $gamificationModeIsActive = api_get_setting('gamification_mode');
1038
1039
        $load_history = (isset($_GET['history']) && intval($_GET['history']) == 1) ? true : false;
1040
        if ($load_history) {
1041
            // Load sessions in category in *history*
1042
            $session_categories = UserManager::get_sessions_by_category($user_id, true);
1043
        } else {
1044
            // Load sessions in category
1045
            $session_categories = UserManager::get_sessions_by_category($user_id, false);
1046
        }
1047
1048
        $html = '';
1049
        // Showing history title
@@ 1429-1435 (lines=7) @@
1426
1427
        $load_history = (isset($_GET['history']) && intval($_GET['history']) == 1) ? true : false;
1428
1429
        if ($load_history) {
1430
            //Load sessions in category in *history*
1431
            $session_categories = UserManager::get_sessions_by_category($user_id, true);
1432
        } else {
1433
            //Load sessions in category
1434
            $session_categories = UserManager::get_sessions_by_category($user_id, false);
1435
        }
1436
1437
        $html = '';
1438