ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


Search People in Networking


  • 2015-06-06 13:16:42

    Search People in Networking

    Hello,

    When I do Search People in networking, it only displays the number of people found as search result. Isn't it supposed to display the name of people that it found, so that I can choose one to start a communication such as sending invitation. I think, when you search people, you don't mean to just see the number of people mached with search term, isn't it supposed to show the names with links?

    Thank you

  • 2015-06-08 09:43:38

    Re: Search People in Networking

    Yes, there does seem to be a problem there. Its been posted to the bug tracker. If you're able to submit a fix, that would be great.


    http://atutor.ca/atutor/mantis/view.php?id=5587

    When you are entering letters in the Search field, does the suggestion list autogenerate there, with a list of names based on the letters typed?

  • 2015-06-08 11:56:12

    Re: Search People in Networking

    Yes, it autogenerates a list of names based on search term.

  • 2015-06-10 09:33:22

    Re: Search People in Networking

    Hello,

    The problem of this issue lies in the output of getRelationship($id) function in '\mods\_standard\social\lib\classes\PrivacyControl\PrivacyController.class.php' file. This function outputs nothing. It can be fixed by changing the line:
    if (!isset($relationship)){

    to:
    if (empty($relationship)){

    because the result of isset() does not works with result of queryDB. Then it will work.