BUGFIX: og:description needs escaping
-
At line 569, the excerpt is echoed without escaping. This needs a htmlspecialchars(). Here is the fix:
social_sharing_toolkit.php
Line 567-570. (The important line is 569)if ($excerpt != '') { echo ' <meta property="og:description" content="' . htmlspecialchars($excerpt) . '"/>'; } else {
- The topic ‘BUGFIX: og:description needs escaping’ is closed to new replies.