| GHengeveld | 
					 | 
			
|---|---|
| 
					 The easy fix: append an @ to hide the error. 
						
					ereg_replace -> @ereg_replace The real fix: replace ereg_replace with preg_replace. This also requires rewriting the regular expression because preg_replace uses Perl style regular expressions while ereg_replace does not.  |