Reply To: Deprecated: Function eregi() is deprecated

Bring Your Business to LifeSupportImage StoreDeprecated: Function eregi() is deprecatedReply To: Deprecated: Function eregi() is deprecated

#52784
Xpark Media
Keymaster

@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 ) ) {