1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Fix for PHP Notice Undefined index: STATUS , Line 110 of /e107_handlers/rate_class.php

This commit is contained in:
Lóna Lore
2017-12-10 11:33:08 +01:00
parent 2e3f25244a
commit 6ba5cac020

View File

@@ -107,7 +107,10 @@ class rater
$text = "";
foreach($tmp as $k)
{
$text .= $TEMPLATE[$k];
if (!empty($TEMPLATE[$k]))
{
$text .= $TEMPLATE[$k];
}
}
return $text;