|
Revision 1539, 464 bytes
(checked in by renato, 1 year ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
if (isset($parameter)) { |
|---|
| 4 |
|
|---|
| 5 |
$tag = urlencode($parameter); |
|---|
| 6 |
$run_result .= "<h2>" . __gettext("Syndication") . "</h2>"; |
|---|
| 7 |
$run_result .= "<p><a href=\"".url."search/rss.php?tag=$tag\">" . __gettext("RSS feed for this tag") . "</a></p>"; |
|---|
| 8 |
global $metatags; |
|---|
| 9 |
$metatags .= "\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"$tag :: RSS\" href=\"".url."search/rss.php?tag=$tag\" />\n"; |
|---|
| 10 |
|
|---|
| 11 |
} |
|---|
| 12 |
|
|---|
| 13 |
?> |
|---|