Commit 4312688d authored by Jake Bell's avatar Jake Bell Committed by Jake Bell
Browse files

Issue #3278722 by jacobbell84: Deprecated function: strip_tags()

parent 4b132d8f
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -185,6 +185,10 @@ class Rss extends FormatterBase {
   *   The sanitized output.
   */
  protected function sanitizeInput($html, $allowed_tags) {
    if (empty($html)) {
      return '';
    }
    else {
      if ($this->getSetting('strip_html')) {
        return strip_tags($html);
      }
@@ -196,3 +200,5 @@ class Rss extends FormatterBase {
    }

  }

}