Completed
Pull Request — master (#4890)
by Blizzz
14:39
created
settings/Controller/CommonSettingsTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 use OCP\Settings\IIconSection;
29 29
 use OCP\Settings\ISettings;
30 30
 
31
-trait CommonSettingsTrait  {
31
+trait CommonSettingsTrait {
32 32
 	/** @var ISettingsManager */
33 33
 	private $settingsManager;
34 34
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 			'admin' => []
43 43
 		];
44 44
 
45
-		if(\OC_User::isAdminUser(\OC_User::getUser())) {
45
+		if (\OC_User::isAdminUser(\OC_User::getUser())) {
46 46
 			$templateParameters['admin'] = $this->formatAdminSections($currentSection);
47 47
 		}
48 48
 
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
 	protected function formatSections($sections, $currentSection, $type) {
55 55
 		$templateParameters = [];
56 56
 		/** @var \OCP\Settings\ISection[] $prioritizedSections */
57
-		foreach($sections as $prioritizedSections) {
57
+		foreach ($sections as $prioritizedSections) {
58 58
 			foreach ($prioritizedSections as $section) {
59
-				if($type === 'admin') {
59
+				if ($type === 'admin') {
60 60
 					$settings = $this->settingsManager->getAdminSettings($section->getID());
61
-				} else if($type === 'personal') {
61
+				} else if ($type === 'personal') {
62 62
 					$settings = $this->settingsManager->getPersonalSettings($section->getID());
63 63
 				}
64 64
 				if (empty($settings)) {
Please login to merge, or discard this patch.
settings/Controller/AdminSettingsController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 		// PhpStorm shows this as unused, but is required by CommonSettingsTrait
79 79
 		$settings = $this->settingsManager->getAdminSettings($section);
80 80
 		$formatted = $this->formatSettings($settings);
81
-		if($section === 'additional') {
81
+		if ($section === 'additional') {
82 82
 			$formatted['content'] .= $this->getLegacyForms();
83 83
 		}
84 84
 		return $formatted;
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
 	private function getLegacyForms() {
91 91
 		$forms = \OC_App::getForms('admin');
92 92
 
93
-		$forms = array_map(function ($form) {
93
+		$forms = array_map(function($form) {
94 94
 			if (preg_match('%(<h2(?P<class>[^>]*)>.*?</h2>)%i', $form, $regs)) {
95
-				$sectionName = str_replace('<h2' . $regs['class'] . '>', '', $regs[0]);
95
+				$sectionName = str_replace('<h2'.$regs['class'].'>', '', $regs[0]);
96 96
 				$sectionName = str_replace('</h2>', '', $sectionName);
97 97
 				$anchor = strtolower($sectionName);
98 98
 				$anchor = str_replace(' ', '-', $anchor);
Please login to merge, or discard this patch.
settings/templates/settings/frame.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 
24 24
 style('settings', 'settings');
25
-script('settings', [ 'settings', 'admin', 'log', 'certificates'] );
25
+script('settings', ['settings', 'admin', 'log', 'certificates']);
26 26
 script('core', ['multiselect', 'setupchecks']);
27 27
 script('files', 'jquery.fileupload');
28 28
 
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 	<ul>
33 33
 		<li class="settings-caption">Personal</li>
34 34
 		<?php
35
-		foreach($_['forms']['personal'] as $form) {
35
+		foreach ($_['forms']['personal'] as $form) {
36 36
 			if (isset($form['anchor'])) {
37 37
 				$anchor = \OC::$server->getURLGenerator()->linkToRoute('settings.PersonalSettings.index', ['section' => $form['anchor']]);
38
-				$class = 'nav-icon-' . $form['anchor'];
38
+				$class = 'nav-icon-'.$form['anchor'];
39 39
 				$sectionName = $form['section-name'];
40 40
 				$active = $form['active'] ? ' class="active"' : '';
41 41
 				?>
@@ -55,16 +55,16 @@  discard block
 block discarded – undo
55 55
 		?>
56 56
 
57 57
 		<?php
58
-		if(!empty($_['forms']['admin'])) {
58
+		if (!empty($_['forms']['admin'])) {
59 59
 			?>
60 60
 			<li class="settings-caption">Administration</li>
61 61
 			<?php
62 62
 		}
63
-		foreach($_['forms']['admin'] as $form) {
63
+		foreach ($_['forms']['admin'] as $form) {
64 64
 			if (isset($form['anchor'])) {
65 65
 
66 66
 				$anchor = \OC::$server->getURLGenerator()->linkToRoute('settings.AdminSettings.index', ['section' => $form['anchor']]);
67
-				$class = 'nav-icon-' . $form['anchor'];
67
+				$class = 'nav-icon-'.$form['anchor'];
68 68
 				$sectionName = $form['section-name'];
69 69
 				$active = $form['active'] ? ' class="active"' : '';
70 70
 		?>
Please login to merge, or discard this patch.
lib/private/Settings/Personal/PersonalInfo.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -154,16 +154,16 @@  discard block
 block discarded – undo
154 154
 		$commonLanguages = [];
155 155
 		$userLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());
156 156
 		$languageCodes = $this->l10nFactory->findAvailableLanguages();
157
-		foreach($languageCodes as $lang) {
157
+		foreach ($languageCodes as $lang) {
158 158
 			$l = \OC::$server->getL10N('settings', $lang);
159 159
 			// TRANSLATORS this is the language name for the language switcher in the personal settings and should be the localized version
160 160
 			$potentialName = (string) $l->t('__language_name__');
161
-			if($l->getLanguageCode() === $lang && substr($potentialName, 0, 1) !== '_') {//first check if the language name is in the translation file
161
+			if ($l->getLanguageCode() === $lang && substr($potentialName, 0, 1) !== '_') {//first check if the language name is in the translation file
162 162
 				$ln = array('code' => $lang, 'name' => $potentialName);
163 163
 			} elseif ($lang === 'en') {
164 164
 				$ln = ['code' => $lang, 'name' => 'English (US)'];
165
-			}else{//fallback to language code
166
-				$ln=array('code'=>$lang, 'name'=>$lang);
165
+			} else {//fallback to language code
166
+				$ln = array('code'=>$lang, 'name'=>$lang);
167 167
 			}
168 168
 
169 169
 			// put appropriate languages into appropriate arrays, to print them sorted
@@ -171,9 +171,9 @@  discard block
 block discarded – undo
171 171
 			if ($lang === $userLang) {
172 172
 				$userLang = $ln;
173 173
 			} elseif (in_array($lang, self::COMMON_LANGUAGE_CODES)) {
174
-				$commonLanguages[array_search($lang, self::COMMON_LANGUAGE_CODES)]=$ln;
174
+				$commonLanguages[array_search($lang, self::COMMON_LANGUAGE_CODES)] = $ln;
175 175
 			} else {
176
-				$languages[]=$ln;
176
+				$languages[] = $ln;
177 177
 			}
178 178
 		}
179 179
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		ksort($commonLanguages);
189 189
 
190 190
 		// sort now by displayed language not the iso-code
191
-		usort( $languages, function ($a, $b) {
191
+		usort($languages, function($a, $b) {
192 192
 			if ($a['code'] === $a['name'] && $b['code'] !== $b['name']) {
193 193
 				// If a doesn't have a name, but b does, list b before a
194 194
 				return 1;
Please login to merge, or discard this patch.
lib/private/Settings/Personal/SyncClients.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	 * @since 9.1
46 46
 	 */
47 47
 	public function getForm() {
48
-		$parameters = [ 'clients' => $this->getClientLinks() ];
48
+		$parameters = ['clients' => $this->getClientLinks()];
49 49
 		return new TemplateResponse('settings', 'settings/personal/sync-clients', $parameters);
50 50
 	}
51 51
 
Please login to merge, or discard this patch.
lib/private/Settings/Manager.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	private function setupSectionEntry($sectionClassName, $type) {
185 185
 		if (!class_exists($sectionClassName)) {
186
-			$this->log->debug('Could not find ' . ucfirst($type) . ' section class ' . $sectionClassName);
186
+			$this->log->debug('Could not find '.ucfirst($type).' section class '.$sectionClassName);
187 187
 			return;
188 188
 		}
189 189
 		try {
@@ -195,13 +195,13 @@  discard block
 block discarded – undo
195 195
 
196 196
 		if (!$section instanceof ISection) {
197 197
 			$this->log->error(
198
-				ucfirst($type) .' section instance must implement \OCP\ISection. Invalid class: {class}',
198
+				ucfirst($type).' section instance must implement \OCP\ISection. Invalid class: {class}',
199 199
 				['class' => $sectionClassName]
200 200
 			);
201 201
 			return;
202 202
 		}
203 203
 		$table = $this->getSectionTableForType($type);
204
-		if(!$this->hasSection(get_class($section), $table)) {
204
+		if (!$this->hasSection(get_class($section), $table)) {
205 205
 			$this->addSection($section, $table);
206 206
 		} else {
207 207
 			$this->updateSection($section, $table);
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 
268 268
 	private function setupSettingsEntry($settingsClassName, $type) {
269 269
 		if (!class_exists($settingsClassName)) {
270
-			$this->log->debug('Could not find ' . $type . ' section class ' . $settingsClassName);
270
+			$this->log->debug('Could not find '.$type.' section class '.$settingsClassName);
271 271
 			return;
272 272
 		}
273 273
 
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 
282 282
 		if (!$settings instanceof ISettings) {
283 283
 			$this->log->error(
284
-				ucfirst($type) . ' section instance must implement \OCP\Settings\ISettings. Invalid class: {class}',
284
+				ucfirst($type).' section instance must implement \OCP\Settings\ISettings. Invalid class: {class}',
285 285
 				['class' => $settingsClassName]
286 286
 			);
287 287
 			return;
@@ -295,18 +295,18 @@  discard block
 block discarded – undo
295 295
 	}
296 296
 
297 297
 	private function getSectionTableForType($type) {
298
-		if($type === 'admin') {
298
+		if ($type === 'admin') {
299 299
 			return Mapper::TABLE_ADMIN_SECTIONS;
300
-		} else if($type === 'personal') {
300
+		} else if ($type === 'personal') {
301 301
 			return Mapper::TABLE_PERSONAL_SECTIONS;
302 302
 		}
303 303
 		throw new \InvalidArgumentException('"admin" or "personal" expected');
304 304
 	}
305 305
 
306 306
 	private function getSettingsTableForType($type) {
307
-		if($type === 'admin') {
307
+		if ($type === 'admin') {
308 308
 			return Mapper::TABLE_ADMIN_SETTINGS;
309
-		} else if($type === 'personal') {
309
+		} else if ($type === 'personal') {
310 310
 			return Mapper::TABLE_PERSONAL_SETTINGS;
311 311
 		}
312 312
 		throw new \InvalidArgumentException('"admin" or "personal" expected');
@@ -405,17 +405,17 @@  discard block
 block discarded – undo
405 405
 				$form = new Personal\PersonalInfo($this->config, $this->userManager, $this->groupManager, $this->accountManager, $this->l10nFactory, $this->l);
406 406
 				$forms[$form->getPriority()] = [$form];
407 407
 			}
408
-			if($section === 'sessions') {
408
+			if ($section === 'sessions') {
409 409
 				/** @var ISettings $form */
410 410
 				$form = new Personal\Sessions();
411 411
 				$forms[$form->getPriority()] = [$form];
412 412
 			}
413
-			if($section === 'app-passwords') {
413
+			if ($section === 'app-passwords') {
414 414
 				/** @var ISettings $form */
415 415
 				$form = new Personal\AppPasswords();
416 416
 				$forms[$form->getPriority()] = [$form];
417 417
 			}
418
-			if($section === 'sync-clients') {
418
+			if ($section === 'sync-clients') {
419 419
 				/** @var ISettings $form */
420 420
 				$form = new Personal\SyncClients($this->config, $this->defaults);
421 421
 				$forms[$form->getPriority()] = [$form];
Please login to merge, or discard this patch.
lib/public/Settings/IManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * @since 9.1.0
37 37
 	 */
38
-	const KEY_ADMIN_SECTION  = 'admin-section';
38
+	const KEY_ADMIN_SECTION = 'admin-section';
39 39
 
40 40
 	/**
41 41
 	 * @since 12.0.0
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	/**
46 46
 	 * @since 12.0.0
47 47
 	 */
48
-	const KEY_PERSONAL_SECTION  = 'personal-section';
48
+	const KEY_PERSONAL_SECTION = 'personal-section';
49 49
 
50 50
 	/**
51 51
 	 * sets up settings according to data specified by an apps info.xml, within
Please login to merge, or discard this patch.
settings/templates/settings/personal/app-passwords.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,13 +30,13 @@
 block discarded – undo
30 30
 ?>
31 31
 
32 32
 <div id="apppasswords" class="section">
33
-	<h2><?php p($l->t('App passwords'));?></h2>
34
-	<p class="settings-hint"><?php p($l->t('Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too.'));?></p>
33
+	<h2><?php p($l->t('App passwords')); ?></h2>
34
+	<p class="settings-hint"><?php p($l->t('Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too.')); ?></p>
35 35
 	<table class="icon-loading">
36 36
 		<thead class="hidden-when-empty">
37 37
 		<tr>
38
-			<th><?php p($l->t('Name'));?></th>
39
-			<th><?php p($l->t('Last activity'));?></th>
38
+			<th><?php p($l->t('Name')); ?></th>
39
+			<th><?php p($l->t('Last activity')); ?></th>
40 40
 			<th></th>
41 41
 		</tr>
42 42
 		</thead>
Please login to merge, or discard this patch.
settings/templates/settings/personal/personal.info.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
 ?>
42 42
 
43 43
 <div id="quota" class="section">
44
-	<div style="width:<?php p($_['usage_relative']);?>%"
45
-		<?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>>
44
+	<div style="width:<?php p($_['usage_relative']); ?>%"
45
+		<?php if ($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>>
46 46
 		<p id="quotatext">
47 47
 			<?php if ($_['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED): ?>
48 48
 				<?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong>',
49
-					[$_['usage'], $_['total_space']]));?>
49
+					[$_['usage'], $_['total_space']])); ?>
50 50
 			<?php else: ?>
51 51
 				<?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)',
52
-					[$_['usage'], $_['total_space'],  $_['usage_relative']]));?>
52
+					[$_['usage'], $_['total_space'], $_['usage_relative']])); ?>
53 53
 			<?php endif ?>
54 54
 		</p>
55 55
 	</div>
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 				</div>
84 84
 			</div>
85 85
 			<span class="icon-checkmark hidden"/>
86
-			<?php if($_['lookupServerUploadEnabled']) { ?>
86
+			<?php if ($_['lookupServerUploadEnabled']) { ?>
87 87
 				<input type="hidden" id="avatarscope" value="<?php p($_['avatarScope']) ?>">
88 88
 			<?php } ?>
89 89
 		</form>
@@ -97,14 +97,14 @@  discard block
 block discarded – undo
97 97
 					<span class="icon-password"/>
98 98
 				</h2>
99 99
 				<input type="text" id="displayname" name="displayname"
100
-					<?php if(!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?>
100
+					<?php if (!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?>
101 101
 					   value="<?php p($_['displayName']) ?>"
102 102
 					   autocomplete="on" autocapitalize="none" autocorrect="off" />
103
-				<?php if(!$_['displayNameChangeSupported']) { ?>
104
-					<span><?php if(isset($_['displayName']) && !empty($_['displayName'])) { p($_['displayName']); } else { p($l->t('No display name set')); } ?></span>
103
+				<?php if (!$_['displayNameChangeSupported']) { ?>
104
+					<span><?php if (isset($_['displayName']) && !empty($_['displayName'])) { p($_['displayName']); } else { p($l->t('No display name set')); } ?></span>
105 105
 				<?php } ?>
106 106
 				<span class="icon-checkmark hidden"/>
107
-				<?php if($_['lookupServerUploadEnabled']) { ?>
107
+				<?php if ($_['lookupServerUploadEnabled']) { ?>
108 108
 					<input type="hidden" id="displaynamescope" value="<?php p($_['displayNameScope']) ?>">
109 109
 				<?php } ?>
110 110
 			</form>
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
 					<label for="email"><?php p($l->t('Email')); ?></label>
116 116
 					<span class="icon-password"/>
117 117
 				</h2>
118
-				<div class="verify <?php if ($_['email'] === ''  || $_['emailScope'] !== 'public') p('hidden'); ?>">
118
+				<div class="verify <?php if ($_['email'] === '' || $_['emailScope'] !== 'public') p('hidden'); ?>">
119 119
 					<img id="verify-email" title="<?php p($_['emailMessage']); ?>" data-status="<?php p($_['emailVerification']) ?>" src="
120 120
 				<?php
121
-					switch($_['emailVerification']) {
121
+					switch ($_['emailVerification']) {
122 122
 						case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
123 123
 							p(image_path('core', 'actions/verifying.svg'));
124 124
 							break;
@@ -131,23 +131,23 @@  discard block
 block discarded – undo
131 131
 					?>">
132 132
 				</div>
133 133
 				<input type="email" name="email" id="email" value="<?php p($_['email']); ?>"
134
-					<?php if(!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?>
134
+					<?php if (!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?>
135 135
 					   placeholder="<?php p($l->t('Your email address')); ?>"
136 136
 					   autocomplete="on" autocapitalize="none" autocorrect="off" />
137
-				<?php if(!$_['displayNameChangeSupported']) { ?>
138
-					<span><?php if(isset($_['email']) && !empty($_['email'])) { p($_['email']); } else { p($l->t('No email address set')); }?></span>
137
+				<?php if (!$_['displayNameChangeSupported']) { ?>
138
+					<span><?php if (isset($_['email']) && !empty($_['email'])) { p($_['email']); } else { p($l->t('No email address set')); }?></span>
139 139
 				<?php } ?>
140
-				<?php if($_['displayNameChangeSupported']) { ?>
140
+				<?php if ($_['displayNameChangeSupported']) { ?>
141 141
 					<br />
142 142
 					<em><?php p($l->t('For password reset and notifications')); ?></em>
143 143
 				<?php } ?>
144 144
 				<span class="icon-checkmark hidden"/>
145
-				<?php if($_['lookupServerUploadEnabled']) { ?>
145
+				<?php if ($_['lookupServerUploadEnabled']) { ?>
146 146
 					<input type="hidden" id="emailscope" value="<?php p($_['emailScope']) ?>">
147 147
 				<?php } ?>
148 148
 			</form>
149 149
 		</div>
150
-		<?php if($_['lookupServerUploadEnabled']) { ?>
150
+		<?php if ($_['lookupServerUploadEnabled']) { ?>
151 151
 			<div class="personal-settings-setting-box">
152 152
 				<form id="phoneform" class="section">
153 153
 					<h2>
@@ -182,10 +182,10 @@  discard block
 block discarded – undo
182 182
 						<label for="website"><?php p($l->t('Website')); ?></label>
183 183
 						<span class="icon-password"/>
184 184
 					</h2>
185
-					<div class="verify <?php if ($_['website'] === ''  || $_['websiteScope'] !== 'public') p('hidden'); ?>">
185
+					<div class="verify <?php if ($_['website'] === '' || $_['websiteScope'] !== 'public') p('hidden'); ?>">
186 186
 						<img id="verify-website" title="<?php p($_['websiteMessage']); ?>" data-status="<?php p($_['websiteVerification']) ?>" src="
187 187
 				<?php
188
-						switch($_['websiteVerification']) {
188
+						switch ($_['websiteVerification']) {
189 189
 							case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
190 190
 								p(image_path('core', 'actions/verifying.svg'));
191 191
 								break;
@@ -196,13 +196,13 @@  discard block
 block discarded – undo
196 196
 								p(image_path('core', 'actions/verify.svg'));
197 197
 						}
198 198
 						?>"
199
-							<?php if($_['websiteVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['websiteVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?>
199
+							<?php if ($_['websiteVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['websiteVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?>
200 200
 						>
201 201
 						<div class="verification-dialog popovermenu bubble menu">
202 202
 							<div class="verification-dialog-content">
203 203
 								<p class="explainVerification"></p>
204 204
 								<p class="verificationCode"></p>
205
-								<p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.'));?></p>
205
+								<p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.')); ?></p>
206 206
 							</div>
207 207
 						</div>
208 208
 					</div>
@@ -219,10 +219,10 @@  discard block
 block discarded – undo
219 219
 						<label for="twitter"><?php p($l->t('Twitter')); ?></label>
220 220
 						<span class="icon-password"/>
221 221
 					</h2>
222
-					<div class="verify <?php if ($_['twitter'] === ''  || $_['twitterScope'] !== 'public') p('hidden'); ?>">
222
+					<div class="verify <?php if ($_['twitter'] === '' || $_['twitterScope'] !== 'public') p('hidden'); ?>">
223 223
 						<img id="verify-twitter" title="<?php p($_['twitterMessage']); ?>" data-status="<?php p($_['twitterVerification']) ?>" src="
224 224
 				<?php
225
-						switch($_['twitterVerification']) {
225
+						switch ($_['twitterVerification']) {
226 226
 							case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
227 227
 								p(image_path('core', 'actions/verifying.svg'));
228 228
 								break;
@@ -233,13 +233,13 @@  discard block
 block discarded – undo
233 233
 								p(image_path('core', 'actions/verify.svg'));
234 234
 						}
235 235
 						?>"
236
-							<?php if($_['twitterVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['twitterVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?>
236
+							<?php if ($_['twitterVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['twitterVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?>
237 237
 						>
238 238
 						<div class="verification-dialog popovermenu bubble menu">
239 239
 							<div class="verification-dialog-content">
240 240
 								<p class="explainVerification"></p>
241 241
 								<p class="verificationCode"></p>
242
-								<p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.'));?></p>
242
+								<p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.')); ?></p>
243 243
 							</div>
244 244
 						</div>
245 245
 					</div>
@@ -264,19 +264,19 @@  discard block
 block discarded – undo
264 264
 </div>
265 265
 
266 266
 <?php
267
-if($_['passwordChangeSupported']) {
267
+if ($_['passwordChangeSupported']) {
268 268
 	script('jquery-showpassword');
269 269
 	?>
270 270
 	<form id="passwordform" class="section">
271
-		<h2 class="inlineblock"><?php p($l->t('Password'));?></h2>
271
+		<h2 class="inlineblock"><?php p($l->t('Password')); ?></h2>
272 272
 		<div id="password-error-msg" class="msg success inlineblock" style="display: none;">Saved</div>
273 273
 		<br>
274 274
 		<label for="pass1" class="hidden-visually"><?php p($l->t('Current password')); ?>: </label>
275 275
 		<input type="password" id="pass1" name="oldpassword"
276
-			   placeholder="<?php p($l->t('Current password'));?>"
276
+			   placeholder="<?php p($l->t('Current password')); ?>"
277 277
 			   autocomplete="off" autocapitalize="none" autocorrect="off" />
278 278
 		<div class="personal-show-container">
279
-			<label for="pass2" class="hidden-visually"><?php p($l->t('New password'));?>: </label>
279
+			<label for="pass2" class="hidden-visually"><?php p($l->t('New password')); ?>: </label>
280 280
 			<input type="password" id="pass2" name="newpassword"
281 281
 				   placeholder="<?php p($l->t('New password')); ?>"
282 282
 				   data-typetoggle="#personal-show"
@@ -292,26 +292,26 @@  discard block
 block discarded – undo
292 292
 
293 293
 <form id="language" class="section">
294 294
 	<h2>
295
-		<label for="languageinput"><?php p($l->t('Language'));?></label>
295
+		<label for="languageinput"><?php p($l->t('Language')); ?></label>
296 296
 	</h2>
297
-	<select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>">
298
-		<option value="<?php p($_['activelanguage']['code']);?>">
299
-			<?php p($_['activelanguage']['name']);?>
297
+	<select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language')); ?>">
298
+		<option value="<?php p($_['activelanguage']['code']); ?>">
299
+			<?php p($_['activelanguage']['name']); ?>
300 300
 		</option>
301
-		<?php foreach($_['commonlanguages'] as $language):?>
302
-			<option value="<?php p($language['code']);?>">
303
-				<?php p($language['name']);?>
301
+		<?php foreach ($_['commonlanguages'] as $language):?>
302
+			<option value="<?php p($language['code']); ?>">
303
+				<?php p($language['name']); ?>
304 304
 			</option>
305
-		<?php endforeach;?>
305
+		<?php endforeach; ?>
306 306
 		<optgroup label="––––––––––"></optgroup>
307
-		<?php foreach($_['languages'] as $language):?>
308
-			<option value="<?php p($language['code']);?>">
309
-				<?php p($language['name']);?>
307
+		<?php foreach ($_['languages'] as $language):?>
308
+			<option value="<?php p($language['code']); ?>">
309
+				<?php p($language['name']); ?>
310 310
 			</option>
311
-		<?php endforeach;?>
311
+		<?php endforeach; ?>
312 312
 	</select>
313 313
 	<a href="https://www.transifex.com/nextcloud/nextcloud/"
314 314
 	   target="_blank" rel="noreferrer">
315
-		<em><?php p($l->t('Help translate'));?></em>
315
+		<em><?php p($l->t('Help translate')); ?></em>
316 316
 	</a>
317 317
 </form>
Please login to merge, or discard this patch.