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:
@@ -107,7 +107,10 @@ class rater
|
||||
$text = "";
|
||||
foreach($tmp as $k)
|
||||
{
|
||||
$text .= $TEMPLATE[$k];
|
||||
if (!empty($TEMPLATE[$k]))
|
||||
{
|
||||
$text .= $TEMPLATE[$k];
|
||||
}
|
||||
}
|
||||
|
||||
return $text;
|
||||
|
Reference in New Issue
Block a user