Fixed a warning...

SVN:trunk[1520]
This commit is contained in:
Denis Flaven
2011-08-25 17:03:12 +00:00
parent e515dfb434
commit 20a06c9212

View File

@@ -186,7 +186,8 @@ class ormCaseLog {
*/
public function GetLatestEntryIndex()
{
$iLast = end(array_keys($this->m_aIndex));
$aKeys = array_keys($this->m_aIndex);
$iLast = end($aKeys); // Strict standards: the parameter passed to 'end' must be a variable since it is passed by reference
return $iLast;
}
}