Hi
Original message (Marc Delisle, Thursday 11.12.2003 12:43 -0500):
SF bug tracker refuses new submissions for the moment (at least in our project) so I submit this here for comments.
Thanks,
Marc
From Andrew Weiner: $save_filename = $cfg['SaveDir'] . preg_replace('@[/\] @','_',$filename);
There needs to be \\ instead of \, first escaping is eaten by php when reading string and second one is required by preg (otherwise ] is escaped so it doesn't find terminating ]).
There seems to be problems with the preg_replace syntax in various phpMyAdmin files. In general the regex should be delimited with a / on either side of the expression example: preg_replace('/@[/\]@/','_',$filename);
No, it can be delimited with any character.