Bring Your Business to Life › Support › Image Store › Deprecated: Function eregi() is deprecated › Reply To: Deprecated: Function eregi() is deprecated
April 24, 2013 at 10:16 pm #52784
Keymaster
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 ) ) {