in reply to Whitespace after "Re*:" colon sometimes disappearing

that's what's happening at the end of add_re_to_title

return "@parts";

with @parts holding the re-part and the original title.

My theory:

The monastery is running on multiple servers and it seems that global vars like $" are not in sync.

This might also explain some weird effects we had since the last migration.

Question:

The bug in question can be easily fixed by

return join " ",@parts;

shall I patch or do the gods want to check the root problem first?

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

updates