Uploaded image for project: 'Moodle'
  1. Moodle
  2. MDL-50988

profile view - myprofilelib.php

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Minor Minor
    • None
    • 2.9.1
    • User management
    • None
    • MOODLE_29_STABLE

      in /moodle/lib/myprofilelib.php line 195

      in moodle Moodle 2.9.1+ (Build: 20150716)

      if (isset($identityfields['department']) && $user->department)

      { $node = new core_user\output\myprofile\node('contact', 'department', get_string('department'), null, null, $user->institution); // -----> here is $user->department $tree->add_node($node); }

      correct is:

      if (isset($identityfields['department']) && $user->department)

      { $node = new core_user\output\myprofile\node('contact', 'department', get_string('department'), null, null, $user->department); $tree->add_node($node); }

            Unassigned Unassigned
            brugger Gisele Brugger
            Votes:
            1 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved:

                Error rendering 'clockify-timesheets-time-tracking-reports:timer-sidebar'. Please contact your Jira administrators.