Hi all,
Maybe a new minor bug : When showing a customer code, using Elephant, there is a warning : Warning: preg_match() [function.preg-match]: No ending delimiter ‘^’ found in /xxxxx/xxxxx/xxxxx/xxxxx/xxxxx/core/lib/functions2.lib.php on line 1074
Thanks
Regards,
Hi, Try to open functions.2.lib.php in Notepad++
go to the line no 1074, the line looks like this -
if (! empty($reg[3]) && preg_match(’^+’,$reg[3])) $maskoffset=preg_replace(’/^+/’,’’,$reg[3]);
Now replace that line with this line
if (! empty($reg[3]) && preg_match(’/^+/’,$reg[3])) $maskoffset=preg_replace(’/^+/’,’’,$reg[3]);
thats it save and try again, this should solve your mentioned error.
do let me know if the solution works. Tx.