From 322e7c4e9fe6f5e53623776c850ecfe61b5a3182 Mon Sep 17 00:00:00 2001 From: Luke Fitzgerald Date: Mon, 9 Aug 2010 09:26:31 -0700 Subject: [PATCH] Small reordering of code (cosmetic) --- plugins/Irc/ircmanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Irc/ircmanager.php b/plugins/Irc/ircmanager.php index 7acb85468f..96c019b7fc 100644 --- a/plugins/Irc/ircmanager.php +++ b/plugins/Irc/ircmanager.php @@ -148,8 +148,8 @@ class IrcManager extends ImManager { ); $this->conn->setConfig($config); - $this->lastPing = time(); $this->conn->connect(); + $this->lastPing = time(); } return $this->conn; }