From 43be3eb4d0112215f03157c81f9f94e03009718f Mon Sep 17 00:00:00 2001
From: Andreas Fischer <bantu@owncloud.com>
Date: Fri, 9 Aug 2013 01:21:45 +0200
Subject: [PATCH] Changing elseif statement to what the PEAR coding guidelines
 say.

---
 lib/l10n.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/l10n.php b/lib/l10n.php
index 5cfe119a4ff..f93443b886a 100644
--- a/lib/l10n.php
+++ b/lib/l10n.php
@@ -386,8 +386,7 @@ class OC_L10N {
 			case 'time':
 				if($data instanceof DateTime) {
 					return $data->format($this->localizations[$type]);
-				}
-				elseif(is_string($data) && !is_numeric($data)) {
+				} elseif(is_string($data) && !is_numeric($data)) {
 					$data = strtotime($data);
 				}
 				$locales = array(self::findLanguage());
-- 
GitLab