PHP:
function has_errors($die = true)
{
if (!empty($this->errors))
{
if ($this->error_handler == ERRTYPE_SILENT OR $die == false)
{
return true;
}
else
{
]trigger_error('<ul><li>' . implode($this->errors, '</li><li>') . '</ul>Unable to proceed with save while $errors array is not empty in class <strong>' . get_class($this) . '</strong>', E_USER_ERROR);
return true;
}
}
else
{
return false;
}
From php error log.
=====================================================
Fatal error: <ul><li>A required field called <em>ipaddress</em> is missing or has an invalid value.</ul>Unable to proceed with save while $errors array is not empty in class <strong>vBShop_DataManager_Transactionlog</strong> in /home/seph/public_html/forums/includes/class_dm.php on line 849
Date: Saturday 02nd of November 2013 12:04:56 AM
Username: hidden
IP Address: 2601:1:9*00:3b*:6101:*6d:d71d:645*
=====================================================
Some members have this kind of IP address. I think it's IPv6.
Is it possible to fix this issue?