Completed
Pull Request — master (#384)
by Tortue
02:27
created
lib/Service/ConfigService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 		if ((!$this->isNonSSLLinksAllowed() || strpos($remote, 'http://') !== 0)
278 278
 			&& strpos($remote, 'https://') !== 0
279 279
 		) {
280
-			$remote = 'https://' . $remote;
280
+			$remote = 'https://'.$remote;
281 281
 		}
282 282
 
283 283
 		return rtrim($remote, '/');
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
 	 */
468 468
 	public function getGroupBackendNamePrefix() {
469 469
 		if ($this->groupBackendNamePrefix === null && $this->isGroupsBackend()) {
470
-			$this->groupBackendNamePrefix = ltrim((string) $this->getAppValue(self::CIRCLES_GROUP_BACKEND_NAME_PREFIX));
470
+			$this->groupBackendNamePrefix = ltrim((string)$this->getAppValue(self::CIRCLES_GROUP_BACKEND_NAME_PREFIX));
471 471
 		}
472 472
 
473 473
 		return $this->groupBackendNamePrefix;
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 		if ($this->groupBackendNameSuffix === null && $this->isGroupsBackend()) {
483 483
 			$l = OC::$server->getL10N('circles');
484 484
 			$defaultSuffix = ' '.$l->t('Circle');
485
-			$customSuffix = (string) $this->getAppValue(self::CIRCLES_GROUP_BACKEND_NAME_SUFFIX);
485
+			$customSuffix = (string)$this->getAppValue(self::CIRCLES_GROUP_BACKEND_NAME_SUFFIX);
486 486
 			$this->groupBackendNameSuffix = rtrim($customSuffix ?: $defaultSuffix);
487 487
 		}
488 488
 
Please login to merge, or discard this patch.