From 71ae3964c66a2cd318d6d69f728ccadbd9d9d245 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Mon, 19 Jul 2004 21:13:42 +0000 Subject: [PATCH] no interference with numbers in titles *without* space, thanks to Nahru --- irc/rcdumper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/rcdumper.php b/irc/rcdumper.php index 93fa26ae7c..2000cd782c 100644 --- a/irc/rcdumper.php +++ b/irc/rcdumper.php @@ -74,7 +74,7 @@ while (1) { $title = str_replace("_", " ", $title); # see http://www.irssi.org/?page=docs&doc=formats for some colour codes. prefix is \003, # no colour (\003) switches back to the term default - $fullString = "\0033 $title\0037 $flag\00310 $url \0037*\003 $user \0037*\003 $comment\n"; + $fullString = "\00303$title\0037 $flag\00310 $url \0037*\003 $user \0037*\003 $comment\n"; print( $fullString ); $oldTimestamp = $row->rc_timestamp; -- 2.20.1