osompress / simple-social-icons

Plugin: Simple Social Icons
62 stars 33 forks source link

Escape plugin URL #35

Closed GaryJones closed 7 years ago

GaryJones commented 7 years ago
<use xlink:href="' . plugin_dir_url(__FILE__) . 'symbol-defs.svg#social-bloglovin"></use>

should probably include escaping:

<use xlink:href="' . esc_url( plugin_dir_url(__FILE__) . 'symbol-defs.svg#social-bloglovin' ) . '"></use>
bgardner commented 7 years ago

@laurenmancke Can you address this in the plugin, as I think it's a wise move and should be part of this update.