diff options
author | Christopher Ng <chrng8@gmail.com> | 2021-10-30 03:36:33 +0000 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2021-11-04 00:31:32 +0000 |
commit | 19c62d051f8f007212a3846e8db20f41683d3c7c (patch) | |
tree | c4ec2d39ad6111ec2f42ec39563f3b8acc3e7d25 /apps/settings/templates | |
parent | 50a6612c1fb1d56f5a9845481c8b74b9331c3c78 (diff) | |
download | nextcloud-server-19c62d051f8f007212a3846e8db20f41683d3c7c.tar.gz nextcloud-server-19c62d051f8f007212a3846e8db20f41683d3c7c.zip |
Add new profile visibility section
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings/templates')
-rw-r--r-- | apps/settings/templates/settings/personal/personal.info.php | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/apps/settings/templates/settings/personal/personal.info.php b/apps/settings/templates/settings/personal/personal.info.php index 4cd0e4e34d6..bcd8315fc43 100644 --- a/apps/settings/templates/settings/personal/personal.info.php +++ b/apps/settings/templates/settings/personal/personal.info.php @@ -80,7 +80,6 @@ script('settings', [ <span class="icon-checkmark hidden"></span> <span class="icon-error hidden"></span> <input type="hidden" id="avatarscope" value="<?php p($_['avatarScope']) ?>"> - <div id="vue-profile-visibility-avatar"></div> </form> </div> <div class="personal-settings-setting-box personal-settings-group-box section"> @@ -133,7 +132,6 @@ script('settings', [ <span class="icon-checkmark hidden"></span> <span class="icon-error hidden"></span> <input type="hidden" id="phonescope" value="<?php p($_['phoneScope']) ?>"> - <div id="vue-profile-visibility-phone"></div> </form> </div> <div class="personal-settings-setting-box"> @@ -150,7 +148,6 @@ script('settings', [ <span class="icon-checkmark hidden"></span> <span class="icon-error hidden"></span> <input type="hidden" id="addressscope" value="<?php p($_['addressScope']) ?>"> - <div id="vue-profile-visibility-address"></div> </form> </div> <div class="personal-settings-setting-box"> @@ -195,7 +192,6 @@ script('settings', [ <span class="icon-checkmark hidden"></span> <span class="icon-error hidden"></span> <input type="hidden" id="websitescope" value="<?php p($_['websiteScope']) ?>"> - <div id="vue-profile-visibility-website"></div> </form> </div> <div class="personal-settings-setting-box"> @@ -240,7 +236,6 @@ script('settings', [ <span class="icon-checkmark hidden"></span> <span class="icon-error hidden"></span> <input type="hidden" id="twitterscope" value="<?php p($_['twitterScope']) ?>"> - <div id="vue-profile-visibility-twitter"></div> </form> </div> <div class="personal-settings-setting-box"> @@ -261,9 +256,6 @@ script('settings', [ <div class="personal-settings-setting-box"> <div id="vue-profile-section"></div> </div> - <div class="personal-settings-setting-box"> - <div id="vue-profile-visibility-section"></div> - </div> <div class="personal-settings-setting-box personal-settings-language-box"> <div id="vue-language-section"></div> </div> @@ -310,3 +302,7 @@ script('settings', [ </div> </div> + +<div class="personal-settings-section"> + <div id="vue-profile-visibility-section"></div> +</div> |