fixed a typo
This commit is contained in:
parent
48c8e72008
commit
575a52874c
|
@ -166,7 +166,7 @@ class Handler_Public extends Handler {
|
||||||
$feed['articles'] = array();
|
$feed['articles'] = array();
|
||||||
|
|
||||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
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) {
|
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
||||||
$line = $p->hook_query_headlines($line, 100);
|
$line = $p->hook_query_headlines($line, 100);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue