On Thu, Aug 29, 2002 at 09:14:12PM +0200, Michael Bramer wrote:
[...]
> I use this code for the short-long-desc seperation:
> foreach (@package_pieces) {
> if (/^Description-$lang:\s+(.*?)\n(.*)$/so) {
You surely should not use /o here:
if (/^Description-$lang:\s+(.*?)\n(.*)$/s) {
Denis