From edd1409a2ddfac85cbfc25c2b84953bbccd1f6b2 Mon Sep 17 00:00:00 2001 From: Alexandre Russo Date: Wed, 21 May 2014 12:19:42 +0200 Subject: [PATCH] PHPCI/Plugin/Xmpp.php : Fix date_format variable --- PHPCI/Plugin/Xmpp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/Xmpp.php b/PHPCI/Plugin/Xmpp.php index dda88473..994bdc6e 100644 --- a/PHPCI/Plugin/Xmpp.php +++ b/PHPCI/Plugin/Xmpp.php @@ -100,7 +100,7 @@ class XMPP implements \PHPCI\Plugin */ protected function setOptions($options) { - foreach (array('username', 'password', 'alias', 'tls', 'server', 'dateFormat') + foreach (array('username', 'password', 'alias', 'tls', 'server', 'date_format') as $key) { if (array_key_exists($key, $options)) { $this->{$key} = $options[$key];