![]() |
How to stop periods from ruining links? - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Community Archive (https://community.mybb.com/forum-106.html) +--- Forum: Archived Forums (https://community.mybb.com/forum-143.html) +---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html) +----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html) +------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html) +------ Thread: How to stop periods from ruining links? (/thread-151553.html) |
How to stop periods from ruining links? - DrXotick - 2014-03-01 Anytime someone writes a link and adds a period at the end, MyBB includes the period as part of the link, which ruins the link when someone tries to go to it. Anyway to fix this? It doesn't seem to happen with the default theme here at community.mybb.com. Not sure what the issue could be. RE: How to stop periods from ruining links? - Nathan Malcolm - 2014-03-01 It's a known issue. There's a WIP patch on Github if you wish to test it out: https://github.com/mybb/mybb/pull/110.patch RE: How to stop periods from ruining links? - DrXotick - 2014-03-01 Which version should I follow? It looks like there are several solutions there. The latest one at the bottom doesn't seem to match my parser.php. RE: How to stop periods from ruining links? - Nathan Malcolm - 2014-03-01 Edit ./inc/class_parser.php and replace:
with:
For future reference, you can apply patches using the 'patch' utility on Linux.
RE: How to stop periods from ruining links? - DrXotick - 2014-03-01 Okay. That worked. I just wasn't sure which to apply. I found this as well after following some links from your first link. https://github.com/Stefan-ST/mybb/commit/ab9374c7ad09853928daf65434867e0df5921918 I assume it's the same patch. Thanks for your time. |