mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 11:50:30 +02:00
Fix for PHP Notice Undefined index: STATUS , Line 110 of /e107_handlers/rate_class.php
This commit is contained in:
@@ -107,7 +107,10 @@ class rater
|
|||||||
$text = "";
|
$text = "";
|
||||||
foreach($tmp as $k)
|
foreach($tmp as $k)
|
||||||
{
|
{
|
||||||
$text .= $TEMPLATE[$k];
|
if (!empty($TEMPLATE[$k]))
|
||||||
|
{
|
||||||
|
$text .= $TEMPLATE[$k];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $text;
|
return $text;
|
||||||
|
Reference in New Issue
Block a user