Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #49044, comment 3


Ignore:
Timestamp:
01/07/2020 03:43:02 PM (5 years ago)
Author:
spherman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #49044, comment 3

    initial v1  
     1Thanks for responding.  Your fix did not work.
     2
     3Here is some additional information I noticed.
     4
     5It seems that the only links that are affected are those that have target=_blank in the URL.
     6
     7So...
     8
     9This does **not** work
     10<a href=/wp-content/uploads/lockport-new-patient-form.pdf target=_blank>New Patient Packet</a>
     11
     12This works (but clearly would not open in a new window:
     13<a href=/wp-content/uploads/lockport-new-patient-form.pdf>New Patient Packet</a>
     14
     15This works
     16<a href="/wp-content/uploads/lockport-new-patient-form.pdf" target=_blank>New Patient Packet</a>
     17
     18This works
     19<a href="/wp-content/uploads/lockport-new-patient-form.pdf" target="_blank">New Patient Packet</a>
     20
    121This is not really urgent to me as I took a couple hours and went through all my sites and fixed the links so that they would work, but I bet there are lots of people out there who are affected by this and do not know it.