cvs: pearbot /modules bugstats.php

[email protected] ("Tobias Schlitt") Sat, 26 Jun 2004 19:51:16 -0000
Newsgroups php.pear.bot
Message-ID <cvstoby1088279476@cvsserver>
toby		Sat Jun 26 15:51:16 2004 EDT

  Modified files:              
    /pearbot/modules	bugstats.php 
  Log:
  * Fix double space bug.
  
  
http://cvs.php.net/diff.php/pearbot/modules/bugstats.php?r1=1.4&r2=1.5&ty=u
Index: pearbot/modules/bugstats.php
diff -u pearbot/modules/bugstats.php:1.4 pearbot/modules/bugstats.php:1.5
--- pearbot/modules/bugstats.php:1.4	Sat Jun 26 15:50:02 2004
+++ pearbot/modules/bugstats.php	Sat Jun 26 15:51:16 2004
@@ -1,9 +1,9 @@
 <?php
 /**
- * $Id: bugstats.php,v 1.4 2004/06/26 19:50:02 toby Exp $
- * $Revision: 1.4 $
+ * $Id: bugstats.php,v 1.5 2004/06/26 19:51:16 toby Exp $
+ * $Revision: 1.5 $
  * $Author: toby $
- * $Date: 2004/06/26 19:50:02 $
+ * $Date: 2004/06/26 19:51:16 $
  *
  * Copyright (c) 2004 Tobias Schlitt <[email protected]> & Mirco Bauer <[email protected]>
 */
@@ -56,7 +56,7 @@
         $chan = $irc->getChannel('#pear');
         $topic = $chan->topic;
         $topic = preg_replace('/\| [0-9]+ open bugs/isU', '', $topic);
-        $irc->setTopic('#pear', $topic.' | '.$count.' open bugs');
+        $irc->setTopic('#pear', $topic.'| '.$count.' open bugs');
         return true;
     }