@@ -277,7 +277,7 @@ discard block |
||
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 |
||
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 |
||
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 |