1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Fix for linkword count.

This commit is contained in:
Cameron 2015-04-09 22:19:27 -07:00
parent 3270d25512
commit a08828ab3e

View File

@ -290,7 +290,10 @@ class e_tohtml_linkwords
$hash = md5($lw);
$this->wordCount[$hash] = 0;
if(!isset($this->wordCount[$hash]))
{
$this->wordCount[$hash] = 0;
}
foreach ($split_line as $sl)
{