| 1 | Thanks for responding. Your fix did not work. |
| 2 | |
| 3 | Here is some additional information I noticed. |
| 4 | |
| 5 | It seems that the only links that are affected are those that have target=_blank in the URL. |
| 6 | |
| 7 | So... |
| 8 | |
| 9 | This does **not** work |
| 10 | <a href=/wp-content/uploads/lockport-new-patient-form.pdf target=_blank>New Patient Packet</a> |
| 11 | |
| 12 | This 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 | |
| 15 | This works |
| 16 | <a href="/wp-content/uploads/lockport-new-patient-form.pdf" target=_blank>New Patient Packet</a> |
| 17 | |
| 18 | This works |
| 19 | <a href="/wp-content/uploads/lockport-new-patient-form.pdf" target="_blank">New Patient Packet</a> |
| 20 | |