Uploaded image for project: 'phpBB3'
  1. phpBB3
  2. PHPBB3-15552

Private Message (PM) "find a member" button "select marked" not working

    XMLWordPrintable

Details

    Description

      When writing a PM you can add recipients via the link "find a member" button.

      The member list opens in a seperate window, you can search and each member has a checkbox next to the name.

      if you check multiple boxes and then press "select marked" the member list window closes and no members are added as recipients.

      (All checked members should be added as recipients).

      This happens on my phpbb forum, but also on the phpbb demo site (http://www.try-phpbb.com/32x).

      I have tested both Chrome and Firefox, it happens in both.

       

      Here are the exact steps to reproduce on the demo site:

      1) goto: http://www.try-phpbb.com/32x

      2) login as administrator

      3) click private messages and "new pm"

      4) click "Find a member"

      5) check the checkbox next to administrator

      6) click on "select marked"

      7) observer that administrator has not been added to the recipients list

       

      My analysis:

      the button executes this code (in the onsubmit of it's form):

      insert_marked_users('#results', this.user); return false;

       

      this.user is not assigned anything anywhere as far as I can tell.

       

      My workaround is selecting all checkboxes via jquery and handing them to insert_marked_users instead of "this.user", code:

       

      <script type="text/javascript">
       function gatherUsers() {
       var result = [];
       $(":checkbox[name=user]").each(
       function()
      { result.push(this); }
      );
       return result;
       }
       </script>
      

       

      and the changed the onsubmit:

      onsubmit="insert_marked_users('#results', gatherUsers()); return false;"

      Attachments

        1. error.png
          error.png
          75 kB
        2. phpbbbug.gif
          phpbbbug.gif
          969 kB

        Activity

          People

            Marc Marc
            JanPeterDev JanPeterDev [X] (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: