@franklin82,
is related to both, looks like you are using php 5.3 and the function has been deprecated, I will make the change on on the next release.
If you need to make the change change the line
if ( !eregi( 'VERIFIED', $info ) ) {
for
if ( !preg_match( '/VERIFIED/', $info ) ) {