@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | || $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js') |
79 | 79 | || $this->appendIfExist($this->serverroot, 'core/'.$script.'.js') |
80 | 80 | || (strpos($scriptName, '/') === -1 && ($this->appendIfExist($this->serverroot, "dist/core-$scriptName.js") |
81 | - || $this->appendIfExist($this->serverroot, $theme_dir . "dist/core-$scriptName.js"))) |
|
81 | + || $this->appendIfExist($this->serverroot, $theme_dir."dist/core-$scriptName.js"))) |
|
82 | 82 | || $this->cacheAndAppendCombineJsonIfExist($this->serverroot, 'core/'.$script.'.json') |
83 | 83 | ) { |
84 | 84 | return; |
@@ -97,20 +97,20 @@ discard block |
||
97 | 97 | |
98 | 98 | // missing translations files fill be ignored |
99 | 99 | if (strpos($script, 'l10n/') === 0) { |
100 | - $this->appendIfExist($app_path, $script . '.js', $app_url); |
|
100 | + $this->appendIfExist($app_path, $script.'.js', $app_url); |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
104 | 104 | if ($app_path === false && $app_url === false) { |
105 | 105 | $this->logger->error('Could not find resource {resource} to load', [ |
106 | - 'resource' => $app . '/' . $script . '.js', |
|
106 | + 'resource' => $app.'/'.$script.'.js', |
|
107 | 107 | 'app' => 'jsresourceloader', |
108 | 108 | ]); |
109 | 109 | return; |
110 | 110 | } |
111 | 111 | |
112 | 112 | if (!$this->cacheAndAppendCombineJsonIfExist($app_path, $script.'.json', $app)) { |
113 | - $this->append($app_path, $script . '.js', $app_url); |
|
113 | + $this->append($app_path, $script.'.js', $app_url); |
|
114 | 114 | } |
115 | 115 | } |
116 | 116 |
@@ -34,19 +34,19 @@ |
||
34 | 34 | ?> |
35 | 35 | <?php if ($_['passwordChangeSupported']) { ?> |
36 | 36 | <div id="security-password" class="section"> |
37 | - <h2 class="inlineblock"><?php p($l->t('Password'));?></h2> |
|
37 | + <h2 class="inlineblock"><?php p($l->t('Password')); ?></h2> |
|
38 | 38 | <span id="password-error-msg" class="msg success hidden">Saved</span> |
39 | 39 | <div class="personal-settings-setting-box personal-settings-password-box"> |
40 | 40 | <form id="passwordform" method="POST"> |
41 | 41 | <div class="input-control"> |
42 | 42 | <label for="pass1"><?php p($l->t('Current password')); ?>: </label> |
43 | 43 | <input type="password" id="pass1" name="oldpassword" |
44 | - placeholder="<?php p($l->t('Your current password'));?>" |
|
44 | + placeholder="<?php p($l->t('Your current password')); ?>" |
|
45 | 45 | autocomplete="current-password" autocapitalize="none" autocorrect="off" /> |
46 | 46 | </div> |
47 | 47 | |
48 | 48 | <div class="personal-show-container"> |
49 | - <label for="pass2" ><?php p($l->t('New password'));?>: </label> |
|
49 | + <label for="pass2" ><?php p($l->t('New password')); ?>: </label> |
|
50 | 50 | <input type="password" id="pass2" name="newpassword" |
51 | 51 | maxlength="469" |
52 | 52 | placeholder="<?php p($l->t('Your new password')); ?>" |