1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +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

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