.../lib/Drupal/rdf/Tests/CommentAttributesTest.php | 2 +- core/profiles/standard/standard.install | 20 -- 1 files changed, 1 insertions(+), 21 deletions(-) diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php b/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php index bb712b6..b58f45a 100644 --- a/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php +++ b/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php @@ -180,6 +180,6 @@ function _testBasicCommentRdfaMarkup($comment, $account = array()) { $name = empty($account["name"]) ? $this->web_user->name : $account["name"] . " (not verified)"; $this->assertEqual((string)$comment_author[0], $name, t("RDFa markup for the comment author found.")); $comment_body = $this->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]//div[@class="content"]//div[contains(@class, "comment-body")]//div[@property="content:encoded"]'); - $this->assertEqual((string)$comment_body[0]->p, $comment->comment, t("RDFa markup for the comment body found.")); + $this->assertEqual((string)$comment_body[0], $comment->comment, t("RDFa markup for the comment body found.")); } } diff --git a/core/profiles/standard/standard.install b/core/profiles/standard/standard.install index 5b74b51..9b1ce78 100644 --- a/core/profiles/standard/standard.install +++ b/core/profiles/standard/standard.install @@ -18,21 +18,11 @@ function standard_install() { 'name' => 'Filtered HTML', 'weight' => 0, 'filters' => array( - // URL filter. - 'filter_url' => array( - 'weight' => 0, - 'status' => 1, - ), // HTML filter. 'filter_html' => array( 'weight' => 1, 'status' => 1, ), - // Line break filter. - 'filter_autop' => array( - 'weight' => 2, - 'status' => 1, - ), // HTML corrector filter. 'filter_htmlcorrector' => array( 'weight' => 10, @@ -48,16 +38,6 @@ function standard_install() { 'name' => 'Full HTML', 'weight' => 1, 'filters' => array( - // URL filter. - 'filter_url' => array( - 'weight' => 0, - 'status' => 1, - ), - // Line break filter. - 'filter_autop' => array( - 'weight' => 1, - 'status' => 1, - ), // HTML corrector filter. 'filter_htmlcorrector' => array( 'weight' => 10,