⌈⌋ ⎇ branch:  freshcode


Check-in [3622816360]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove doubled `em` tag.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3622816360e7a3a17f33c16493723f6ef895e2ae
User & Date: mario 2015-01-18 22:49:23
Context
2015-01-20
16:03
Filter addition for spammy GitHub releases. check-in: 39ab60dd4c user: mario tags: trunk
2015-01-18
22:49
Remove doubled `em` tag. check-in: 3622816360 user: mario tags: trunk
22:43
Launchpad-releases for frontpage sidebar. check-in: 6df868d8f9 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to cron.daily/news_launchpad.php.

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
");

// collect
$out = "";
foreach ($q as $row) {
   $row = array_map("input::html", $row);
   $out .= <<<HTML
  <a href="$row[web_link]" title="$row[summary]">$row[proj_title] <em class=version title="$row[release_notes]"><em class=verison>$row[version]</em></a>
HTML;
}

// write
file_put_contents("./template/feed.launchpad.htm", $out);









|







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
");

// collect
$out = "";
foreach ($q as $row) {
   $row = array_map("input::html", $row);
   $out .= <<<HTML
  <a href="$row[web_link]" title="$row[summary]">$row[proj_title] <em class=version title="$row[release_notes]">$row[version]</em></a>
HTML;
}

// write
file_put_contents("./template/feed.launchpad.htm", $out);