Skip to content
Snippets Groups Projects
Commit 3bf40ecc authored by Kjartan Mannes's avatar Kjartan Mannes
Browse files

- fixing parse error.

parent 581bc6a2
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -634,7 +634,7 @@ function import_page_sources() {
$result = db_query("SELECT * FROM feed ORDER BY title");
while ($feed = db_fetch_object($result)) {
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid)));
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid));
$output .= "<div style=\"margin-left: 20px;\">". check_output($feed->description, 1) ."</div><br />";
}
......
......@@ -634,7 +634,7 @@ function import_page_sources() {
$result = db_query("SELECT * FROM feed ORDER BY title");
while ($feed = db_fetch_object($result)) {
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid)));
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid));
$output .= "<div style=\"margin-left: 20px;\">". check_output($feed->description, 1) ."</div><br />";
}
......
......@@ -634,7 +634,7 @@ function import_page_sources() {
$result = db_query("SELECT * FROM feed ORDER BY title");
while ($feed = db_fetch_object($result)) {
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid)));
$output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid));
$output .= "<div style=\"margin-left: 20px;\">". check_output($feed->description, 1) ."</div><br />";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment