summaryrefslogtreecommitdiff
path: root/lib/jabber.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-02-13 10:08:11 -0800
committerZach Copley <zach@controlyourself.ca>2009-02-13 10:08:11 -0800
commit02184df7c8fd40ee9d1b134fd318e0c6f444ae01 (patch)
treeb405a0a62aed95f96a537ce579392e70e70b7234 /lib/jabber.php
parent4ad5d55ecf65fb1c9f58211b37f8f111e9ca0c7b (diff)
Fixed arguments to syslog (LOG_ERR, not LOG_ERROR) and removed unused function
Diffstat (limited to 'lib/jabber.php')
-rw-r--r--lib/jabber.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jabber.php b/lib/jabber.php
index b385d3c5c..3fbb3e1ab 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -114,7 +114,7 @@ function jabber_connect($resource=null)
try {
$conn->connect(true); // true = persistent connection
} catch (XMPPHP_Exception $e) {
- common_log(LOG_ERROR, $e->getMessage());
+ common_log(LOG_ERR, $e->getMessage());
return false;
}