diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-31 15:49:11 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-08-31 22:53:21 -0700 |
commit | cae1072c0d5168c1e01c4ac00a8ee0ad735ff969 (patch) | |
tree | b59afc5f3d3ca1da4e7aedf6b027d137472a9b07 | |
parent | 84e11e8a1727404db558b2e9210f57b6f4f1786d (diff) |
Fix typo in Stomp
Thanks Marcel|HSD
-rw-r--r-- | extlib/Stomp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extlib/Stomp.php b/extlib/Stomp.php index 9e1c97b3b..abd9cba62 100644 --- a/extlib/Stomp.php +++ b/extlib/Stomp.php @@ -454,7 +454,7 @@ class Stomp */ public function disconnect () { - $header = array(); + $headers = array(); if ($this->clientId != null) { $headers["client-id"] = $this->clientId; |