summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjustauser <[email protected]>2013-06-27 11:18:23 -0400
committerjustauser <[email protected]>2013-06-27 11:18:23 -0400
commit891e36f57e2e3955a4f13019e8fdc58fce826434 (patch)
tree2610bb1f22c8807593143dcc634a8bda68be59f4 /include
parentb584460302b674c8e9c52718d0e6682e427a913a (diff)
Changes to add a new hook: HOOK_QUERY_HEADLINES. An example is provided.
Diffstat (limited to 'include')
-rw-r--r--include/functions.php10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/functions.php b/include/functions.php
index 355eec2cd..eb011b6db 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -71,7 +71,6 @@
"hu_HU" => "Magyar (Hungarian)",
"it_IT" => "Italiano",
"ja_JP" => "日本語 (Japanese)",
- "ko_KR" => "한국어 (Korean)",
"lv_LV" => "Latviešu",
"nb_NO" => "Norwegian bokmål",
"nl_NL" => "Dutch",
@@ -1059,7 +1058,7 @@
$date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 WEEK) ";
}
break;
- case "2week":
+ case "2weeks":
if (DB_TYPE == "pgsql") {
$date_qpart = "date_entered < NOW() - INTERVAL '2 week' ";
} else {
@@ -2579,7 +2578,7 @@
}
}
- $content_query_part = "content as content_preview, cached_content, ";
+ $content_query_part = "content, content AS content_preview, cached_content, ";
if (is_numeric($feed)) {
@@ -2750,13 +2749,10 @@
if ($site_url) {
- if ($entry->hasAttribute('href')) {
+ if ($entry->hasAttribute('href'))
$entry->setAttribute('href',
rewrite_relative_url($site_url, $entry->getAttribute('href')));
- $entry->setAttribute('rel', 'noreferrer');
- }
-
if ($entry->hasAttribute('src')) {
$src = rewrite_relative_url($site_url, $entry->getAttribute('src'));