chamilo / chamilo-lms

Chamilo is a learning management system focused on ease of use and accessibility
https://chamilo.org
GNU General Public License v3.0
798 stars 480 forks source link

Admin page : Skills block have incorrect links #4740

Closed NicoDucou closed 1 year ago

NicoDucou commented 1 year ago

On the administration page (https://testing24.beeznest.com/admin) in the Skills block there are the following entries with incorrect links :

The only correct link is for :

        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'skills/skills_wheel.php',
            'label' => get_lang('Skills wheel'),
        ];
        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'skills/skills_import.php',
            'label' => get_lang('Skills import'),
        ];
        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'skills/skill_list.php',
            'label' => get_lang('Manage skills'),
        ];
        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'skills/skill.php',
            'label' => get_lang('Manage skills levels'),
        ];

        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'social/skills_ranking.php',
            'label' => get_lang('Skills ranking'),
        ];
        $items[] = [
            'url' => api_get_path(WEB_CODE_PATH).'skills/skills_gradebook.php',
            'label' => get_lang('Skills and assessments'),
        ];

So there must be an incorrect convertion made at some point

christianbeeznest commented 1 year ago

Hi @NicoDucou

The request is done in this PR https://github.com/chamilo/chamilo-lms/pull/4748

Thanks for confirmation.

NicoDucou commented 1 year ago

All good here