From: justauser Date: Sat, 29 Jun 2013 07:11:38 +0000 (-0400) Subject: fixed a typo X-Git-Tag: 1.9~61^2~3 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=575a52874c8ebb0bcd5741009cc143389ea2279e;p=tt-rss.git fixed a typo --- diff --git a/classes/handler/public.php b/classes/handler/public.php index 08f35e21..810f4c03 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); }