I am wondering why certain ereg() statements have been changed to become preg() statements that use the
S pattern modifier.
For instance:
$insert_string = preg_replace("/, $/Ss", ")", $insert_string);
This is a
very simple pattern to match, so why tell PHP to spend the extra time analysing it??
