Verified Commit 983d2909 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3422222 by gorkagr, mstrelan, smustgrave: Wrong return type in...

Issue #3422222 by gorkagr, mstrelan, smustgrave: Wrong return type in Renderer::ensureMarkupIsSafe()

(cherry picked from commit e65cc2e4)
parent da6376b9
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -810,10 +810,11 @@ protected function xssFilterAdminIfUnsafe($string) {
   * @param array $elements
   *   A render array with #markup set.
   *
   * @return \Drupal\Component\Render\MarkupInterface|string
   *   The escaped markup wrapped in a Markup object. If $elements['#markup']
   *   is an instance of \Drupal\Component\Render\MarkupInterface, it won't be
   *   escaped or filtered again.
   * @return array
   *   The given array with the escaped markup wrapped in a Markup object.
   *   If $elements['#markup'] is an instance of
   *   \Drupal\Component\Render\MarkupInterface, it won't be escaped or filtered
   *   again.
   *
   * @see \Drupal\Component\Utility\Html::escape()
   * @see \Drupal\Component\Utility\Xss::filter()