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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user