Line 674 of zen/template.php causes backslashes to be printed to the actual HTML. There's really no need for the backslashes in the first section of the string


if (count($messages) > 1) {
      $output .= " <ul class=\"messages__list\">\n";
      foreach ($messages as $message) {

      // Removed the backlashes in this line here:
        $output .= '  <li class="messages__item">' . $message . "</li>\n";
      }
      $output .= " </ul>\n";
    }

Comments

akosipax’s picture

Issue summary: View changes
echoz’s picture

Status: Active » Closed (duplicate)