summaryrefslogtreecommitdiff
path: root/classes/handler
diff options
context:
space:
mode:
authorjustauser <[email protected]>2013-06-29 03:11:38 -0400
committerjustauser <[email protected]>2013-06-29 03:11:38 -0400
commit575a52874c8ebb0bcd5741009cc143389ea2279e (patch)
treeb98060d95392d9b9ec0063a80d978698f0da33fb /classes/handler
parent48c8e72008c01513985b53135297366b80b5b1f4 (diff)
fixed a typo
Diffstat (limited to 'classes/handler')
-rw-r--r--classes/handler/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 08f35e212..810f4c034 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -166,7 +166,7 @@ class Handler_Public extends Handler {
$feed['articles'] = array();
while ($line = $this->dbh->fetch_assoc($result)) {
- $line["content_preview"]] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
+ $line["content_preview"] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
$line = $p->hook_query_headlines($line, 100);
}