Bug #11145
closedLink Broken On RBE via MAC Mail Client
0%
Description
On this post -- https://commons.gc.cuny.edu/groups/cac-community-team-project-planning/forum/topic/fall-2018-spring-2019-meeting-schedule/#post-74284 -- sent via Mac Mail client the linked phrase "this one" was broken when email was posted to the forum.
Updated by Raymond Hoh over 5 years ago
- Category name set to Reply By Email
- Assignee set to Raymond Hoh
Thanks Luke.
RBE uses the plain-text version of the email when parsing the email for the reply.
I just took a look at the plain-text version of your reply and this is what is shown:
I was in this one <https://commons.gc.cuny.edu/?p=3D70164> but just got = booted.=20
The forum post shows this:
I was in this one <https://commons.gc.cuny.edu/?p=70164> but just got booted.
I'll try and take a closer look at the parsing later on, but I'm guessing the triangular brackets or the plain-text line wrap might be the issue. It could be a forum formatting issue as well.
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.14.8 to 1.14.9
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.14.9 to 1.14.10
Updated by Raymond Hoh over 5 years ago
- Target version changed from 1.14.10 to 1.14.11
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.14.11 to 1.15.1
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.15.1 to 1.15.2
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.15.2 to 1.15.3
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.15.3 to 1.15.4
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.15.4 to 1.15.5
Updated by Raymond Hoh over 5 years ago
- Target version changed from 1.15.5 to 1.15.6
Updated by Boone Gorges over 5 years ago
- Target version changed from 1.15.6 to 1.15.7
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.7 to 1.15.8
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.8 to 1.15.9
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.9 to 1.15.10
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.10 to 1.15.11
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.11 to 1.15.12
Updated by Boone Gorges about 5 years ago
- Target version changed from 1.15.12 to 1.15.13
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.15.13 to 1.15.14
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.15.14 to 1.16.1
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.16.1 to 1.16.2
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.16.2 to 1.16.3
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.16.3 to 1.16.4
Updated by Boone Gorges almost 5 years ago
- Target version changed from 1.16.4 to 1.16.5
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.5 to 1.16.6
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.6 to 1.16.7
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.7 to 1.16.8
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.8 to 1.16.9
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.9 to 1.16.10
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.10 to 1.16.11
Updated by Boone Gorges over 4 years ago
- Target version changed from 1.16.11 to 1.16.12
Updated by Raymond Hoh over 4 years ago
- Status changed from New to Staged for Production Release
Fixed in https://github.com/cuny-academic-commons/cac/commit/9d0764b0fdd9229ddc76a05f70c082cebd4d5849
The issue is when replying by email and adding a link with anchor text, the anchor-linked text is converted to plain-text format:
My link <https://commons.gc.cuny.edu>
When saved into the database, the triangular brackets get converted into HTML entities:
My link <https://commons.gc.cuny.edu>
And on the frontend, bbPress and BuddyPress will render the link as:
My link <https://commons.gc.cuny.edu>
To fix this, I wrote a display filter to convert the triangular bracket HTML entities to circular brackets:
My link (https://commons.gc.cuny.edu)
Updated by Boone Gorges over 4 years ago
- Status changed from Staged for Production Release to Resolved