diff --git a/include/conversation.php b/include/conversation.php index b129b7d14..d6ad4f11b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -994,6 +994,7 @@ function builtin_activity_puller($item, &$conv_responses) { function format_like($cnt, array $arr, $type, $id) { $o = ''; $expanded = ''; + $phrase = ''; if ($cnt == 1) { $likers = $arr[0]; diff --git a/src/Core/Renderer.php b/src/Core/Renderer.php index 44b56fcba..2ca91b4b6 100644 --- a/src/Core/Renderer.php +++ b/src/Core/Renderer.php @@ -48,29 +48,29 @@ class Renderer extends BaseObject 'internal' => '', 'smarty3' => '}}' ]; - - /** - * @brief This is our template processor - * - * @param string|FriendicaSmarty $s The string requiring macro substitution or an instance of FriendicaSmarty - * @param array $r key value pairs (search => replace) - * - * @return string substituted string - */ - public static function replaceMacros($s, $r) + + /** + * @brief This is our template processor + * + * @param string|FriendicaSmarty $s The string requiring macro substitution or an instance of FriendicaSmarty + * @param array $vars key value pairs (search => replace) + * + * @return string substituted string + */ + public static function replaceMacros($s, $vars) { $stamp1 = microtime(true); $a = self::getApp(); // pass $baseurl to all templates - $r['$baseurl'] = System::baseUrl(); + $vars['$baseurl'] = System::baseUrl(); $t = self::getTemplateEngine(); try { - $output = $t->replaceMacros($s, $r); + $output = $t->replaceMacros($s, $vars); } catch (Exception $e) { echo "
" . __FUNCTION__ . ": " . $e->getMessage() . "
"; - killme(); + exit(); } $a->saveTimestamp($stamp1, "rendering"); diff --git a/src/Render/FriendicaSmarty.php b/src/Render/FriendicaSmarty.php index 8ecea0518..413d746dc 100644 --- a/src/Render/FriendicaSmarty.php +++ b/src/Render/FriendicaSmarty.php @@ -42,6 +42,8 @@ class FriendicaSmarty extends Smarty $this->left_delimiter = Renderer::getTemplateLeftDelimiter('smarty3'); $this->right_delimiter = Renderer::getTemplateRightDelimiter('smarty3'); + $this->escape_html = true; + // Don't report errors so verbosely $this->error_reporting = E_ALL & ~E_NOTICE; } diff --git a/view/templates/acl_selector.tpl b/view/templates/acl_selector.tpl index 7c68a7306..48706535f 100644 --- a/view/templates/acl_selector.tpl +++ b/view/templates/acl_selector.tpl @@ -17,10 +17,10 @@ {{if $networks}}
-
{{$emailcc}}
+
{{$emailcc}}
{{if $jotnets}} -{{$jotnets}} +{{$jotnets nofilter}} {{/if}}{{/if}}

{{$title}} - {{$page}}

-

{{$description}}

+

{{$description nofilter}}

@@ -32,19 +32,19 @@ {{foreach $contacts as $contact}} - {{$contact.nickname|escape}} - {{$contact.name|escape}} - {{$contact.addr|escape}} - {{$contact.url}} + {{$contact.nickname}} + {{$contact.name}} + {{$contact.addr}} + {{$contact.url}} {{/foreach}}

{{$select_all}} | {{$select_none}}

- {{$paginate}} -
+ {{$paginate nofilter}} +
{{else}} -

{{$no_data|escape:'html'}}

+

{{$no_data}}

{{/if}}
@@ -58,6 +58,6 @@ -
+
diff --git a/view/templates/admin/logs.tpl b/view/templates/admin/logs.tpl index b2e6357a9..a218a38f5 100644 --- a/view/templates/admin/logs.tpl +++ b/view/templates/admin/logs.tpl @@ -2,13 +2,13 @@

{{$title}} - {{$page}}

- + {{include file="field_checkbox.tpl" field=$debugging}} {{include file="field_input.tpl" field=$logfile}} {{include file="field_select.tpl" field=$loglevel}} -
+
diff --git a/view/templates/admin/settings_features.tpl b/view/templates/admin/settings_features.tpl index 1ca0708bf..f0b696fae 100644 --- a/view/templates/admin/settings_features.tpl +++ b/view/templates/admin/settings_features.tpl @@ -17,7 +17,7 @@ {{/foreach}}
- +
{{/foreach}} diff --git a/view/templates/admin/site.tpl b/view/templates/admin/site.tpl index 34b1e3b1b..dd40654b5 100644 --- a/view/templates/admin/site.tpl +++ b/view/templates/admin/site.tpl @@ -39,7 +39,7 @@ });
-

{{$title|escape}} - {{$page|escape}}

+

{{$title}} - {{$page}}

@@ -58,7 +58,7 @@ {{if $ssl_policy.2 == 1}}{{include file="field_checkbox.tpl" field=$force_ssl}}{{/if}} {{include file="field_checkbox.tpl" field=$hide_help}} {{include file="field_select.tpl" field=$singleuser}} -
+

{{$registration}}

{{include file="field_input.tpl" field=$register_text}} @@ -67,13 +67,13 @@ {{include file="field_checkbox.tpl" field=$no_multi_reg}} {{include file="field_checkbox.tpl" field=$no_openid}} {{include file="field_checkbox.tpl" field=$no_regfullname}} -
+

{{$upload}}

{{include file="field_input.tpl" field=$maximagesize}} {{include file="field_input.tpl" field=$maximagelength}} {{include file="field_input.tpl" field=$jpegimagequality}} -
+

{{$corporate}}

{{include file="field_input.tpl" field=$allowed_sites}} @@ -99,14 +99,14 @@ {{/if}} {{include file="field_checkbox.tpl" field=$dfrn_only}} {{include file="field_input.tpl" field=$global_directory}} -
+
{{include file="field_checkbox.tpl" field=$newuser_private}} {{include file="field_checkbox.tpl" field=$enotify_no_content}} {{include file="field_checkbox.tpl" field=$private_addons}} {{include file="field_checkbox.tpl" field=$disable_embedded}} {{include file="field_checkbox.tpl" field=$allow_users_remote_self}} {{include file="field_checkbox.tpl" field=$explicit_content}} -
+

{{$advanced}}

{{include file="field_select.tpl" field=$rino}} @@ -123,7 +123,7 @@ {{include file="field_checkbox.tpl" field=$suppress_tags}} {{include file="field_checkbox.tpl" field=$nodeinfo}} {{include file="field_select.tpl" field=$check_new_version_url}} -
+

{{$portable_contacts}}

{{include file="field_checkbox.tpl" field=$poco_completion}} @@ -131,7 +131,7 @@ {{include file="field_select.tpl" field=$poco_discovery}} {{include file="field_select.tpl" field=$poco_discovery_since}} {{include file="field_checkbox.tpl" field=$poco_local_search}} -
+

{{$performance}}

{{include file="field_checkbox.tpl" field=$only_tag_search}} @@ -143,9 +143,9 @@ {{include file="field_input.tpl" field=$dbclean_expire_days}} {{include file="field_input.tpl" field=$dbclean_unclaimed}} {{include file="field_input.tpl" field=$dbclean_expire_conv}} -
+
-

{{$worker_title|escape}}

+

{{$worker_title}}

{{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$min_memory}} {{include file="field_input.tpl" field=$worker_queues}} @@ -153,9 +153,9 @@ {{include file="field_checkbox.tpl" field=$worker_fastlane}} {{include file="field_checkbox.tpl" field=$worker_frontend}} -
+
-

{{$relay_title|escape}}

+

{{$relay_title}}

{{include file="field_checkbox.tpl" field=$relay_subscribe}} {{include file="field_input.tpl" field=$relay_server}} {{include file="field_checkbox.tpl" field=$relay_directly}} @@ -163,7 +163,7 @@ {{include file="field_input.tpl" field=$relay_server_tags}} {{include file="field_checkbox.tpl" field=$relay_user_tags}} -
+
@@ -173,8 +173,8 @@

{{$relocate}}

{{$relocate_warning}} {{include file="field_input.tpl" field=$relocate_url}} - -
+ +
diff --git a/view/templates/admin/tos.tpl b/view/templates/admin/tos.tpl index 75244924b..d4e1bcb48 100644 --- a/view/templates/admin/tos.tpl +++ b/view/templates/admin/tos.tpl @@ -6,11 +6,11 @@ {{include file="field_checkbox.tpl" field=$displaytos}} {{include file="field_checkbox.tpl" field=$displayprivstatement}} {{include file="field_textarea.tpl" field=$tostext}} -
+

{{$preview}}

{{for $i=1 to 3}} -

{{$privtext[$i]}}

+

{{$privtext[$i] nofilter}}

{{/for}} diff --git a/view/templates/admin/users.tpl b/view/templates/admin/users.tpl index f06b0f973..88feb6136 100644 --- a/view/templates/admin/users.tpl +++ b/view/templates/admin/users.tpl @@ -35,8 +35,8 @@ {{$u.email}} - - + + @@ -46,7 +46,7 @@
{{$select_all}}
-
+
{{else}}

{{$no_pending}}

{{/if}} @@ -79,8 +79,8 @@ {{foreach $users as $u}} - {{$u.nickname|escape}} - {{$u.name}} + {{$u.nickname}} + {{$u.name}} {{$u.email}} {{$u.register_date}} {{$u.login_date}} @@ -94,8 +94,8 @@ {{/if}} {{if $u.is_deletable}} - - + + {{else}}   {{/if}} @@ -105,7 +105,7 @@
{{$select_all}}
-
+
{{else}} NO USERS?!? {{/if}} @@ -122,8 +122,8 @@ {{foreach $deleted as $u}} - {{$u.nickname|escape}} - {{$u.name}} + {{$u.nickname}} + {{$u.name}} {{$u.email}} {{$u.register_date}} {{$u.login_date}} @@ -150,6 +150,6 @@ -
+
diff --git a/view/templates/album_edit.tpl b/view/templates/album_edit.tpl index 3d1d7573d..72aedd8b7 100644 --- a/view/templates/album_edit.tpl +++ b/view/templates/album_edit.tpl @@ -4,12 +4,12 @@ - +
- - + + diff --git a/view/templates/apps.tpl b/view/templates/apps.tpl index 1efd6fdcb..55303b3d7 100644 --- a/view/templates/apps.tpl +++ b/view/templates/apps.tpl @@ -3,6 +3,6 @@ diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index c7e10482e..ffc7b19d0 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -13,7 +13,7 @@ {{$invite_desc}}

-{{$desc}} +{{$desc nofilter}}

{{/if}} @@ -30,18 +30,18 @@ {{if $url}}
{{$url_label}}
{{$url}}
{{/if}} {{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} -{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +{{if $about}}
{{$about_label}}
{{$about nofilter}}
{{/if}}
{{if $myaddr}} {{$myaddr}} - + {{else}} - + {{/if}} {{if $url}} - + {{/if}}
@@ -53,8 +53,8 @@
{{if $submit}} - + {{/if}} - +
diff --git a/view/templates/birthdays_reminder.tpl b/view/templates/birthdays_reminder.tpl index 9261ff8d3..6aa51d470 100644 --- a/view/templates/birthdays_reminder.tpl +++ b/view/templates/birthdays_reminder.tpl @@ -1,10 +1,10 @@ {{if $count}} -
- +
diff --git a/view/templates/mail_conv.tpl b/view/templates/mail_conv.tpl index 9ad7fec34..905bf3625 100644 --- a/view/templates/mail_conv.tpl +++ b/view/templates/mail_conv.tpl @@ -7,7 +7,7 @@
{{$mail.from_name}}
{{$mail.date}}
{{$mail.subject}}
-
{{$mail.body}}
+
{{$mail.body nofilter}}
diff --git a/view/templates/manage.tpl b/view/templates/manage.tpl index dd27092e9..d881e5fb6 100644 --- a/view/templates/manage.tpl +++ b/view/templates/manage.tpl @@ -1,6 +1,6 @@

{{$title}}

-
{{$desc}}
+
{{$desc nofilter}}
{{$choose}}

{{$authorize}}

-
+
diff --git a/view/templates/peoplefind.tpl b/view/templates/peoplefind.tpl index 67f7a8086..d4d99c2da 100644 --- a/view/templates/peoplefind.tpl +++ b/view/templates/peoplefind.tpl @@ -3,7 +3,7 @@

{{$nv.findpeople}}

{{$nv.desc}}
- +
diff --git a/view/templates/photo_album.tpl b/view/templates/photo_album.tpl index 08df8f756..cae3b868a 100644 --- a/view/templates/photo_album.tpl +++ b/view/templates/photo_album.tpl @@ -10,12 +10,12 @@ {{foreach $photos as $photo}}
- - {{if $photo.album.name}}{{$photo.album.name|escape}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt|escape}}{{else}}{{$photo.unknown}}{{/if}} + + {{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}}

{{$photo.desc}}

{{/foreach}} -{{$paginate}} +{{$paginate nofilter}} diff --git a/view/templates/photo_edit.tpl b/view/templates/photo_edit.tpl index 8bad96302..8b22dfb44 100644 --- a/view/templates/photo_edit.tpl +++ b/view/templates/photo_edit.tpl @@ -21,14 +21,14 @@
- {{$aclselect}} + {{$aclselect nofilter}}
- - + +
diff --git a/view/templates/photo_top.tpl b/view/templates/photo_top.tpl index 0dd8c4e99..902f74232 100644 --- a/view/templates/photo_top.tpl +++ b/view/templates/photo_top.tpl @@ -1,7 +1,7 @@
- - {{$photo.alt|escape}} + + {{$photo.alt}} -
{{$photo.album.name|escape}}
+
{{$photo.album.name}}
diff --git a/view/templates/photo_view.tpl b/view/templates/photo_view.tpl index 8fa3de61d..d5c3d6826 100644 --- a/view/templates/photo_view.tpl +++ b/view/templates/photo_view.tpl @@ -12,10 +12,10 @@ {{if $prevlink}}{{/if}} -
+
{{if $nextlink}}{{/if}}
-
{{$desc}}
+
{{$desc nofilter}}
{{if $tags}}
{{$tags.0}}
{{$tags.1}}
@@ -34,5 +34,5 @@ {{$comments}} -{{$paginate}} +{{$paginate nofilter}} diff --git a/view/templates/photos_default_uploader_submit.tpl b/view/templates/photos_default_uploader_submit.tpl index 91444e2d5..e178e977a 100644 --- a/view/templates/photos_default_uploader_submit.tpl +++ b/view/templates/photos_default_uploader_submit.tpl @@ -1,4 +1,4 @@
- +
diff --git a/view/templates/photos_recent.tpl b/view/templates/photos_recent.tpl index 19456187b..b75c5a41a 100644 --- a/view/templates/photos_recent.tpl +++ b/view/templates/photos_recent.tpl @@ -11,4 +11,4 @@
-{{$paginate}} +{{$paginate nofilter}} diff --git a/view/templates/photos_upload.tpl b/view/templates/photos_upload.tpl index aeb6e5957..a594660fd 100644 --- a/view/templates/photos_upload.tpl +++ b/view/templates/photos_upload.tpl @@ -34,7 +34,7 @@
- {{$aclselect}} + {{$aclselect nofilter}}
diff --git a/view/templates/poke_content.tpl b/view/templates/poke_content.tpl index 18191de03..91aadcdd8 100644 --- a/view/templates/poke_content.tpl +++ b/view/templates/poke_content.tpl @@ -1,7 +1,7 @@

{{$title}}

-
{{$desc}}
+
{{$desc nofilter}}
@@ -9,7 +9,7 @@
{{$clabel}}
- +
@@ -28,7 +28,7 @@
- + diff --git a/view/templates/profile-hide-wall.tpl b/view/templates/profile-hide-wall.tpl index e61c4dd96..ff106fa29 100644 --- a/view/templates/profile-hide-wall.tpl +++ b/view/templates/profile-hide-wall.tpl @@ -1,6 +1,6 @@

-{{$desc}} +{{$desc nofilter}}

diff --git a/view/templates/profile-in-directory.tpl b/view/templates/profile-in-directory.tpl index 942c2e3e8..bfc13e85e 100644 --- a/view/templates/profile-in-directory.tpl +++ b/view/templates/profile-in-directory.tpl @@ -1,6 +1,6 @@

-{{$desc}} +{{$desc nofilter}}

diff --git a/view/templates/profile-in-netdir.tpl b/view/templates/profile-in-netdir.tpl index 559caed34..c91601bce 100644 --- a/view/templates/profile-in-netdir.tpl +++ b/view/templates/profile-in-netdir.tpl @@ -1,6 +1,6 @@

-{{$desc}} +{{$desc nofilter}}

diff --git a/view/templates/profile_advanced.tpl b/view/templates/profile_advanced.tpl index 19d4490ea..a31868a0d 100644 --- a/view/templates/profile_advanced.tpl +++ b/view/templates/profile_advanced.tpl @@ -58,7 +58,7 @@ {{if $profile.homepage}}
{{$profile.homepage.0}}
-
{{$profile.homepage.1}}
+
{{$profile.homepage.1 nofilter}}
{{/if}} @@ -177,7 +177,7 @@ {{if $profile.forumlist}}
{{$profile.forumlist.0}}
-
{{$profile.forumlist.1}}
+
{{$profile.forumlist.1 nofilter}}
{{/if}} diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl index 2363bd3f0..08e833f10 100644 --- a/view/templates/profile_edit.tpl +++ b/view/templates/profile_edit.tpl @@ -1,15 +1,15 @@ -{{$default}} +{{$default nofilter}}

{{$banner}}

@@ -25,35 +25,35 @@ {{include file="field_yesno.tpl" field=$details}}
-
*
+
*
- +
- +
-{{$gender}} +{{$gender nofilter}}
-{{$dob}} +{{$dob nofilter}}
-{{$hide_friends}} +{{$hide_friends nofilter}}
@@ -63,20 +63,20 @@
- +
- +
- +
@@ -100,7 +100,7 @@
- +
@@ -110,19 +110,19 @@
- -{{$marital}} + +{{$marital nofilter}}
- +
-{{$sexual}} +{{$sexual nofilter}}
@@ -130,38 +130,38 @@
- +
- +
{{$xmpp.3}}
- +
- +
- +
{{$pub_keywords.3}}
- +
{{$prv_keywords.3}}
@@ -330,60 +330,60 @@ {{/if}}
-
*
+
*
- +
{{if $personal_account}}
-{{$gender}} +{{$gender nofilter}}
-{{$dob}} +{{$dob nofilter}}
{{/if}}
- +
- +
{{$xmpp.3}}
-{{$hide_friends}} +{{$hide_friends nofilter}}
- +
- +
- +
@@ -407,13 +407,13 @@
- +
{{$pub_keywords.3}}
- +
{{$prv_keywords.3}}
diff --git a/view/templates/profile_photo.tpl b/view/templates/profile_photo.tpl index 1695d01e2..e7c6b8960 100644 --- a/view/templates/profile_photo.tpl +++ b/view/templates/profile_photo.tpl @@ -17,11 +17,11 @@
- +
\ No newline at end of file diff --git a/view/templates/profile_vcard.tpl b/view/templates/profile_vcard.tpl index 14e1a0373..f10a21ca6 100644 --- a/view/templates/profile_vcard.tpl +++ b/view/templates/profile_vcard.tpl @@ -1,19 +1,19 @@
-
{{$profile.name|escape}}
+
{{$profile.name}}
- {{if $profile.addr}}
{{$profile.addr|escape}}
{{/if}} + {{if $profile.addr}}
{{$profile.addr}}
{{/if}} {{if $profile.pdesc}}
{{$profile.pdesc}}
{{/if}} {{if $profile.picdate}} -
{{$profile.name|escape}}
+
{{$profile.name}}
{{else}} -
{{$profile.name|escape}}
+
{{$profile.name}}
{{/if}} {{if $account_type}}{{/if}} - {{if $profile.network_name}}
{{$network}}
{{$profile.network_name}}
{{/if}} + {{if $profile.network_name}}
{{$network}}
{{$profile.network_name nofilter}}
{{/if}} {{if $location}}
{{$location}}
@@ -47,7 +47,7 @@ {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} - {{if $about}}
{{$about}}
{{$profile.about}}
{{/if}} + {{if $about}}
{{$about}}
{{$profile.about nofilter}}
{{/if}} {{include file="diaspora_vcard.tpl"}} @@ -70,6 +70,6 @@
-{{$contact_block}} +{{$contact_block nofilter}} diff --git a/view/templates/prv_message.tpl b/view/templates/prv_message.tpl index 654671af0..087d08dbb 100644 --- a/view/templates/prv_message.tpl +++ b/view/templates/prv_message.tpl @@ -5,10 +5,10 @@
-{{$parent}} +{{$parent nofilter}}
{{$to}}
-{{$select}} +{{$select nofilter}}
{{$subject}}
@@ -18,15 +18,15 @@
- +
-
+
- +
diff --git a/view/templates/register.tpl b/view/templates/register.tpl index 2e5588ae7..30b242983 100644 --- a/view/templates/register.tpl +++ b/view/templates/register.tpl @@ -16,7 +16,7 @@ {{if $oidlabel}}
- +
{{/if}} @@ -35,14 +35,14 @@
- +
- +
@@ -55,7 +55,7 @@
-
@{{$sitename}}
+
@{{$sitename}}
@@ -76,7 +76,7 @@ {{/if}}
- +
diff --git a/view/templates/remote_friends_common.tpl b/view/templates/remote_friends_common.tpl index f5f43360a..4ae682f43 100644 --- a/view/templates/remote_friends_common.tpl +++ b/view/templates/remote_friends_common.tpl @@ -1,17 +1,17 @@
-
{{$desc}}      {{if $linkmore}}{{$more}}{{/if}}
+
{{$desc nofilter}}      {{if $linkmore}}{{$more}}{{/if}}
{{if $items}} {{foreach $items as $item}} diff --git a/view/templates/removeme.tpl b/view/templates/removeme.tpl index 4acfb9ff1..1e52bfa4e 100644 --- a/view/templates/removeme.tpl +++ b/view/templates/removeme.tpl @@ -3,7 +3,7 @@
-
{{$desc}}
+
{{$desc nofilter}}
@@ -14,7 +14,7 @@
- +
diff --git a/view/templates/saved_searches_aside.tpl b/view/templates/saved_searches_aside.tpl index 28a7ed58a..5000e4acb 100644 --- a/view/templates/saved_searches_aside.tpl +++ b/view/templates/saved_searches_aside.tpl @@ -1,7 +1,7 @@
- {{$searchbox}} + {{$searchbox nofilter}}
-
{{$item.title|escape}}
+
{{$item.title}}
-
{{$item.body}}
+
{{$item.body nofilter}}
{{if $item.has_cats}}
{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}} {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
@@ -54,7 +54,7 @@
{{if $item.conv}} - {{$item.conv.title|escape}} + {{$item.conv.title}} {{/if}}
diff --git a/view/templates/settings/addons.tpl b/view/templates/settings/addons.tpl index 32ec5a048..567ac81b7 100644 --- a/view/templates/settings/addons.tpl +++ b/view/templates/settings/addons.tpl @@ -5,7 +5,7 @@
-{{$settings_addons}} +{{$settings_addons nofilter}}
diff --git a/view/templates/settings/connectors.tpl b/view/templates/settings/connectors.tpl index a23791768..e275e68ce 100644 --- a/view/templates/settings/connectors.tpl +++ b/view/templates/settings/connectors.tpl @@ -14,7 +14,7 @@ {{include file="field_checkbox.tpl" field=$disable_cw}} {{include file="field_checkbox.tpl" field=$no_intelligent_shortening}} {{include file="field_checkbox.tpl" field=$ostatus_autofriend}} - {{$default_group}} + {{$default_group nofilter}} {{include file="field_input.tpl" field=$legacy_contact}}

{{$repair_ostatus_text}}

@@ -23,7 +23,7 @@
-{{$settings_connectors}} +{{$settings_connectors nofilter}} {{if $mail_disabled}} @@ -35,7 +35,7 @@

{{$h_imap}}

-

{{$imap_desc}}

+

{{$imap_desc nofilter}}

{{include file="field_custom.tpl" field=$imap_lastcheck}} {{include file="field_input.tpl" field=$mail_server}} {{include file="field_input.tpl" field=$mail_port}} @@ -48,7 +48,7 @@ {{include file="field_input.tpl" field=$mail_movetofolder}}
- +
{{/if}} diff --git a/view/templates/settings/display.tpl b/view/templates/settings/display.tpl index e1a012380..4b769d421 100644 --- a/view/templates/settings/display.tpl +++ b/view/templates/settings/display.tpl @@ -21,17 +21,17 @@ {{include file="field_checkbox.tpl" field=$infinite_scroll}} {{include file="field_checkbox.tpl" field=$bandwidth_saver}} {{include file="field_checkbox.tpl" field=$smart_threading}} -

{{$calendar_title|escape}}

+

{{$calendar_title}}

{{include file="field_select.tpl" field=$first_day_of_week}}
- +
{{if $theme_config}}

{{$stitle}}

-{{$theme_config}} +{{$theme_config nofilter}} {{/if}} diff --git a/view/templates/settings/features.tpl b/view/templates/settings/features.tpl index eb3f67f81..2793e477b 100644 --- a/view/templates/settings/features.tpl +++ b/view/templates/settings/features.tpl @@ -13,7 +13,7 @@ {{include file="field_yesno.tpl" field=$fcat}} {{/foreach}}
- +
{{/foreach}} diff --git a/view/templates/settings/nick_set.tpl b/view/templates/settings/nick_set.tpl index 8decc2dd4..a6dc4d74c 100644 --- a/view/templates/settings/nick_set.tpl +++ b/view/templates/settings/nick_set.tpl @@ -1,6 +1,5 @@ - -
-
{{$desc}}
+
+
{{$desc nofilter}}
diff --git a/view/templates/settings/oauth.tpl b/view/templates/settings/oauth.tpl index 164930ecb..edb0ff63e 100644 --- a/view/templates/settings/oauth.tpl +++ b/view/templates/settings/oauth.tpl @@ -23,8 +23,8 @@ {{/if}} {{/if}} {{if $app.my}} -   -   +   +   {{/if}}
{{/foreach}} diff --git a/view/templates/settings/oauth_edit.tpl b/view/templates/settings/oauth_edit.tpl index 901998154..eed9f6ea3 100644 --- a/view/templates/settings/oauth_edit.tpl +++ b/view/templates/settings/oauth_edit.tpl @@ -11,7 +11,7 @@ {{include file="field_input.tpl" field=$icon}}
- +
diff --git a/view/templates/settings/settings.tpl b/view/templates/settings/settings.tpl index d017367fe..c95c0b143 100644 --- a/view/templates/settings/settings.tpl +++ b/view/templates/settings/settings.tpl @@ -1,6 +1,6 @@

{{$ptitle}}

-{{$nickname_block}} +{{$nickname_block nofilter}}
@@ -16,7 +16,7 @@ {{/if}}
- +
@@ -33,7 +33,7 @@
- +
@@ -45,21 +45,21 @@ {{include file="field_input.tpl" field=$maxreq}} -{{$profile_in_dir}} +{{$profile_in_dir nofilter}} -{{$profile_in_net_dir}} +{{$profile_in_net_dir nofilter}} -{{$hide_friends}} +{{$hide_friends nofilter}} -{{$hide_wall}} +{{$hide_wall nofilter}} -{{$blockwall}} +{{$blockwall nofilter}} -{{$blocktags}} +{{$blocktags nofilter}} -{{$suggestme}} +{{$suggestme nofilter}} -{{$unkmail}} +{{$unkmail nofilter}} {{include file="field_input.tpl" field=$cntunkmail}} @@ -90,7 +90,7 @@
- {{$aclselect}} + {{$aclselect nofilter}}
@@ -99,11 +99,11 @@
-{{$group_select}} +{{$group_select nofilter}}
- +
@@ -130,13 +130,6 @@ {{include file="field_checkbox.tpl" field=$email_textonly}} {{include file="field_checkbox.tpl" field=$detailed_notif}} - - {{include file="field_yesno.tpl" field=$desktop_notifications}} -{{$tabs}} +{{$tabs nofilter}}
@@ -17,7 +17,7 @@
@@ -31,7 +31,7 @@ {{* we put here a hidden input element. This is needed to transmit the batch actions with javascript*}} - + {{* We put the contact batch actions in a dropdown menu *}}
diff --git a/view/theme/frio/templates/credits.tpl b/view/theme/frio/templates/credits.tpl index 75ab272df..5e5aeecc2 100644 --- a/view/theme/frio/templates/credits.tpl +++ b/view/theme/frio/templates/credits.tpl @@ -1,10 +1,10 @@
{{include file="section_title.tpl"}} -

{{$thanks|escape}}

+

{{$thanks}}

diff --git a/view/theme/frio/templates/crepair.tpl b/view/theme/frio/templates/crepair.tpl index d4cdec501..6695682e0 100644 --- a/view/theme/frio/templates/crepair.tpl +++ b/view/theme/frio/templates/crepair.tpl @@ -2,18 +2,18 @@
{{include file="section_title.tpl"}} - {{$tab_str}} + {{$tab_str nofilter}} -
{{$warning}}

+
{{$warning nofilter}}

- {{$info}}
+ {{$info nofilter}}

- +
{{if $update_profile}} @@ -46,7 +46,7 @@ {{/if}}
- +
diff --git a/view/theme/frio/templates/directory_header.tpl b/view/theme/frio/templates/directory_header.tpl index 4bb739e78..98ec3f5e2 100644 --- a/view/theme/frio/templates/directory_header.tpl +++ b/view/theme/frio/templates/directory_header.tpl @@ -15,7 +15,7 @@
@@ -37,4 +37,4 @@
-{{$paginate}} +{{$paginate nofilter}} diff --git a/view/theme/frio/templates/event.tpl b/view/theme/frio/templates/event.tpl index 82ed1de09..39695819a 100644 --- a/view/theme/frio/templates/event.tpl +++ b/view/theme/frio/templates/event.tpl @@ -6,19 +6,19 @@
{{if $event.item.author_name}} - {{$event.item.author_name|escape}} + {{$event.item.author_name}} {{/if}}
- {{$event.html}} + {{$event.html nofilter}}
- {{if $event.edit}}{{/if}} - {{if $event.copy}}{{/if}} - {{if $event.drop}}{{/if}} - {{if $event.item.plink}}{{/if}} + {{if $event.edit}}{{/if}} + {{if $event.copy}}{{/if}} + {{if $event.drop}}{{/if}} + {{if $event.item.plink}}{{/if}}
diff --git a/view/theme/frio/templates/event_form.tpl b/view/theme/frio/templates/event_form.tpl index 41b11c5bb..661bdecb2 100644 --- a/view/theme/frio/templates/event_form.tpl +++ b/view/theme/frio/templates/event_form.tpl @@ -45,10 +45,10 @@
{{* The field for event starting time *}} - {{$s_dsel}} + {{$s_dsel nofilter}} {{* The field for event finish time *}} - {{$f_dsel}} + {{$f_dsel nofilter}} {{* checkbox if the the event doesn't have a finish time *}} {{include file="field_checkbox.tpl" field=$nofinish}} @@ -64,7 +64,7 @@ {{* The submit button - saves the event *}}
- +
@@ -79,39 +79,39 @@
@@ -41,7 +41,7 @@ {{* The content of the event description *}} {{if $description}}
- {{$description}} + {{$description nofilter}}
{{/if}} diff --git a/view/theme/frio/templates/events_js.tpl b/view/theme/frio/templates/events_js.tpl index 3866282a3..f233866f0 100644 --- a/view/theme/frio/templates/events_js.tpl +++ b/view/theme/frio/templates/events_js.tpl @@ -1,11 +1,11 @@
- {{$tabs}} + {{$tabs nofilter}} {{include file="section_title.tpl" title=$title pullright=1}} {{* The link to create a new event *}} {{if $new_event.0}} @@ -40,9 +40,9 @@ {{* The buttons to change the month/weeks/days *}}
- - - + + +
{{* The title (e.g. name of the mont/week/day) *}} diff --git a/view/theme/frio/templates/field_checkbox.tpl b/view/theme/frio/templates/field_checkbox.tpl index 1fde3634a..5dc891666 100644 --- a/view/theme/frio/templates/field_checkbox.tpl +++ b/view/theme/frio/templates/field_checkbox.tpl @@ -5,7 +5,7 @@
diff --git a/view/theme/frio/templates/field_colorinput.tpl b/view/theme/frio/templates/field_colorinput.tpl index 704db346d..285501ef3 100644 --- a/view/theme/frio/templates/field_colorinput.tpl +++ b/view/theme/frio/templates/field_colorinput.tpl @@ -2,12 +2,12 @@
- + {{if $field.4}}{{$field.4}}{{/if}}
{{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_custom.tpl b/view/theme/frio/templates/field_custom.tpl index 158073a64..5b5c90779 100644 --- a/view/theme/frio/templates/field_custom.tpl +++ b/view/theme/frio/templates/field_custom.tpl @@ -1,8 +1,8 @@
- {{$field.2}} + {{$field.2 nofilter}} {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_fileinput.tpl b/view/theme/frio/templates/field_fileinput.tpl index c5f8ac86d..143aa19e0 100644 --- a/view/theme/frio/templates/field_fileinput.tpl +++ b/view/theme/frio/templates/field_fileinput.tpl @@ -2,12 +2,12 @@
- + {{if $field.4}}{{$field.4}}{{/if}}
{{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_input.tpl b/view/theme/frio/templates/field_input.tpl index 6ea3923b9..ef55203a0 100644 --- a/view/theme/frio/templates/field_input.tpl +++ b/view/theme/frio/templates/field_input.tpl @@ -3,9 +3,9 @@ {{if !isset($label) || $label != false }} {{/if}} - + {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_intcheckbox.tpl b/view/theme/frio/templates/field_intcheckbox.tpl index f898c87fa..18a2ea6ca 100644 --- a/view/theme/frio/templates/field_intcheckbox.tpl +++ b/view/theme/frio/templates/field_intcheckbox.tpl @@ -1,9 +1,9 @@
- + {{if $field.4}} - {{$field.4}} + {{$field.4 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_openid.tpl b/view/theme/frio/templates/field_openid.tpl index 66f8c9e80..b05270de3 100644 --- a/view/theme/frio/templates/field_openid.tpl +++ b/view/theme/frio/templates/field_openid.tpl @@ -1,9 +1,9 @@
- + {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_password.tpl b/view/theme/frio/templates/field_password.tpl index 7bef420a1..92c98a44c 100644 --- a/view/theme/frio/templates/field_password.tpl +++ b/view/theme/frio/templates/field_password.tpl @@ -1,9 +1,9 @@
- + {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_radio.tpl b/view/theme/frio/templates/field_radio.tpl index 725e1c96a..35f99c9d6 100644 --- a/view/theme/frio/templates/field_radio.tpl +++ b/view/theme/frio/templates/field_radio.tpl @@ -5,7 +5,7 @@ diff --git a/view/theme/frio/templates/field_select.tpl b/view/theme/frio/templates/field_select.tpl index 594b91002..2a609ed71 100644 --- a/view/theme/frio/templates/field_select.tpl +++ b/view/theme/frio/templates/field_select.tpl @@ -2,9 +2,9 @@
{{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_select_raw.tpl b/view/theme/frio/templates/field_select_raw.tpl index 52b63079c..bbd8368f2 100644 --- a/view/theme/frio/templates/field_select_raw.tpl +++ b/view/theme/frio/templates/field_select_raw.tpl @@ -2,9 +2,9 @@
{{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_textarea.tpl b/view/theme/frio/templates/field_textarea.tpl index 1aea484de..05f8fc5a3 100644 --- a/view/theme/frio/templates/field_textarea.tpl +++ b/view/theme/frio/templates/field_textarea.tpl @@ -1,9 +1,9 @@
- + {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/field_themeselect.tpl b/view/theme/frio/templates/field_themeselect.tpl index fc1f7243a..78c179436 100644 --- a/view/theme/frio/templates/field_themeselect.tpl +++ b/view/theme/frio/templates/field_themeselect.tpl @@ -6,7 +6,7 @@ {{foreach $field.4 as $opt=>$val}}{{/foreach}} {{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}} {{if $field.5=="preview"}}
{{/if}} diff --git a/view/theme/frio/templates/field_yesno.tpl b/view/theme/frio/templates/field_yesno.tpl index 47649fe67..22ef4461e 100644 --- a/view/theme/frio/templates/field_yesno.tpl +++ b/view/theme/frio/templates/field_yesno.tpl @@ -4,7 +4,7 @@
- + @@ -15,7 +15,7 @@
{{if $field.3}} - {{$field.3}} + {{$field.3 nofilter}} {{/if}}
diff --git a/view/theme/frio/templates/fileas_widget.tpl b/view/theme/frio/templates/fileas_widget.tpl index a4645841f..b7d867e82 100644 --- a/view/theme/frio/templates/fileas_widget.tpl +++ b/view/theme/frio/templates/fileas_widget.tpl @@ -1,7 +1,7 @@

{{$title}}

-
{{$desc}}
+
{{$desc nofilter}}
diff --git a/view/theme/frio/templates/login.tpl b/view/theme/frio/templates/login.tpl index ae586a3e6..ebbdeee41 100644 --- a/view/theme/frio/templates/login.tpl +++ b/view/theme/frio/templates/login.tpl @@ -9,7 +9,7 @@ {{include file="field_input.tpl" field=$lname}} {{include file="field_password.tpl" field=$lpassword}}
@@ -24,13 +24,13 @@
- +
{{foreach $hiddens as $k=>$v}} - + {{/foreach}}
@@ -39,8 +39,8 @@ {{if $register}} {{/if}} diff --git a/view/theme/frio/templates/mail_conv.tpl b/view/theme/frio/templates/mail_conv.tpl index b5154aa4c..80f5e7547 100644 --- a/view/theme/frio/templates/mail_conv.tpl +++ b/view/theme/frio/templates/mail_conv.tpl @@ -2,16 +2,16 @@
- {{$mail.from_name|escape}} + {{$mail.from_name}}
{{$mail.date}}
-

{{$mail.from_name|escape}}

+

{{$mail.from_name}}

- {{$mail.body}} + {{$mail.body nofilter}}
{{*× *}}
diff --git a/view/theme/frio/templates/mail_list.tpl b/view/theme/frio/templates/mail_list.tpl index e6a024f11..4a797d47c 100644 --- a/view/theme/frio/templates/mail_list.tpl +++ b/view/theme/frio/templates/mail_list.tpl @@ -5,13 +5,13 @@
{{$ago}}
-

{{$from_name|escape}}

+

{{$from_name}}

diff --git a/view/theme/frio/templates/message_side.tpl b/view/theme/frio/templates/message_side.tpl index 214bfd7f1..de1d68b0a 100644 --- a/view/theme/frio/templates/message_side.tpl +++ b/view/theme/frio/templates/message_side.tpl @@ -2,7 +2,7 @@ {{if $tabs}}
    - {{$tabs}} + {{$tabs nofilter}}
{{/if}} diff --git a/view/theme/frio/templates/nav.tpl b/view/theme/frio/templates/nav.tpl index 6f20c247c..d64eae9c4 100644 --- a/view/theme/frio/templates/nav.tpl +++ b/view/theme/frio/templates/nav.tpl @@ -40,37 +40,37 @@
diff --git a/view/theme/frio/templates/peoplefind.tpl b/view/theme/frio/templates/peoplefind.tpl index 21b3e47e8..fc5d249b4 100644 --- a/view/theme/frio/templates/peoplefind.tpl +++ b/view/theme/frio/templates/peoplefind.tpl @@ -5,8 +5,8 @@ {{* The search field *}} diff --git a/view/theme/frio/templates/photo_album.tpl b/view/theme/frio/templates/photo_album.tpl index 235b9c46d..a34e8ea86 100644 --- a/view/theme/frio/templates/photo_album.tpl +++ b/view/theme/frio/templates/photo_album.tpl @@ -37,7 +37,7 @@
- {{$paginate}} + {{$paginate nofilter}}
diff --git a/view/theme/frio/templates/photo_item.tpl b/view/theme/frio/templates/photo_item.tpl index 8267fd631..935e6288b 100644 --- a/view/theme/frio/templates/photo_item.tpl +++ b/view/theme/frio/templates/photo_item.tpl @@ -23,7 +23,7 @@
- {{$name|escape}} + {{$name}}
diff --git a/view/theme/frio/templates/photo_top.tpl b/view/theme/frio/templates/photo_top.tpl index c64f9b89b..a86aa7f80 100644 --- a/view/theme/frio/templates/photo_top.tpl +++ b/view/theme/frio/templates/photo_top.tpl @@ -1,4 +1,4 @@ - - {{if $photo.album.name}}{{$photo.album.name|escape}}{{elseif $photo.desc}}{{$photo.desc|escape}}{{elseif $photo.alt}}{{$photo.alt|escape}}{{else}}{{$photo.unknown|escape}}{{/if}} + + {{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}} diff --git a/view/theme/frio/templates/photo_view.tpl b/view/theme/frio/templates/photo_view.tpl index e540a03f9..1d39b16ee 100644 --- a/view/theme/frio/templates/photo_view.tpl +++ b/view/theme/frio/templates/photo_view.tpl @@ -5,24 +5,24 @@
diff --git a/view/theme/frio/templates/poke_content.tpl b/view/theme/frio/templates/poke_content.tpl index 6fb3b399b..b015c4447 100644 --- a/view/theme/frio/templates/poke_content.tpl +++ b/view/theme/frio/templates/poke_content.tpl @@ -2,7 +2,7 @@

{{$title}}

-
{{$desc}}
+
{{$desc nofilter}}
@@ -11,7 +11,7 @@ {{* The input field with the recipient name*}}
- +
@@ -37,7 +37,7 @@
- +
diff --git a/view/theme/frio/templates/profile_advanced.tpl b/view/theme/frio/templates/profile_advanced.tpl index 256a4138a..a36572c25 100644 --- a/view/theme/frio/templates/profile_advanced.tpl +++ b/view/theme/frio/templates/profile_advanced.tpl @@ -82,7 +82,7 @@

{{$profile.homepage.0}}
-
{{$profile.homepage.1}}
+
{{$profile.homepage.1 nofilter}}
{{/if}} @@ -227,7 +227,7 @@

{{$profile.forumlist.0}}
-
{{$profile.forumlist.1}}
+
{{$profile.forumlist.1 nofilter}}
{{/if}}
diff --git a/view/theme/frio/templates/profile_edit.tpl b/view/theme/frio/templates/profile_edit.tpl index 89353e1a6..946443cf1 100644 --- a/view/theme/frio/templates/profile_edit.tpl +++ b/view/theme/frio/templates/profile_edit.tpl @@ -10,22 +10,22 @@  {{$profile_action}} @@ -65,7 +65,7 @@ {{* Some hints to characteristics of the current profile (if available) *}} {{if $is_default}} -
{{$default}}
+
{{$default nofilter}}
{{/if}} {{* friendica differs in $detailled_profile (all fields available and a short Version if this is variable false *}} @@ -91,16 +91,15 @@ {{include file="field_input.tpl" field=$pdesc}} -
- {{$gender}} + {{$gender nofilter}}
- {{$dob}} + {{$dob nofilter}} - {{$hide_friends}} + {{$hide_friends nofilter}}
@@ -168,8 +167,8 @@
- - {{$marital.selector}} + + {{$marital.selector nofilter}}
@@ -179,7 +178,7 @@
- {{$sexual.selector}} + {{$sexual.selector nofilter}}
@@ -261,11 +260,11 @@ {{if $personal_account}}
- {{$gender}} + {{$gender nofilter}}
- {{$dob}} + {{$dob nofilter}} {{/if}} @@ -273,7 +272,7 @@ {{include file="field_input.tpl" field=$xmpp}} - {{$hide_friends}} + {{$hide_friends nofilter}} {{include file="field_input.tpl" field=$address}} diff --git a/view/theme/frio/templates/profile_entry.tpl b/view/theme/frio/templates/profile_entry.tpl index 1ee9eda85..fb5436fb5 100644 --- a/view/theme/frio/templates/profile_entry.tpl +++ b/view/theme/frio/templates/profile_entry.tpl @@ -1,7 +1,7 @@
- {{$alt|escape}} + {{$alt}}
diff --git a/view/theme/frio/templates/profile_vcard.tpl b/view/theme/frio/templates/profile_vcard.tpl index 793fec753..0649f8a55 100644 --- a/view/theme/frio/templates/profile_vcard.tpl +++ b/view/theme/frio/templates/profile_vcard.tpl @@ -2,19 +2,19 @@
{{if $profile.picdate}} - {{$profile.name|escape}} + {{$profile.name}} {{else}} - {{$profile.name|escape}} + {{$profile.name}} {{/if}}
{{if $profile.edit}}
- +
{{else}} {{if $profile.menu}} -
+
{{/if}} {{/if}}
@@ -25,23 +25,23 @@
-

{{$profile.name|escape}}

+

{{$profile.name}}

- {{if $profile.addr}}
{{$profile.addr|escape}}
{{/if}} + {{if $profile.addr}}
{{$profile.addr}}
{{/if}} - {{if $profile.pdesc}}
{{$profile.pdesc|escape}}
{{/if}} + {{if $profile.pdesc}}
{{$profile.pdesc}}
{{/if}}
@@ -129,6 +129,6 @@ {{if $contact_block}}
- {{$contact_block}} + {{$contact_block nofilter}}
{{/if}} diff --git a/view/theme/frio/templates/prv_message.tpl b/view/theme/frio/templates/prv_message.tpl index 9077c4d4c..68db2568a 100644 --- a/view/theme/frio/templates/prv_message.tpl +++ b/view/theme/frio/templates/prv_message.tpl @@ -6,7 +6,7 @@

{{$header}}

*}} - {{$parent}} + {{$parent nofilter}} {{* The To: form-group which contains the message recipient *}}
@@ -15,7 +15,7 @@ {{else}} - {{$select}} + {{$select nofilter}} {{/if}}
@@ -33,38 +33,38 @@
- {{$settings_connectors}} + {{$settings_connectors nofilter}} -{{if $mail_disabled}} - -{{else}} +{{if !$mail_disabled}}

{{$h_imap}}

{{/if}} diff --git a/view/theme/frio/templates/settings/display.tpl b/view/theme/frio/templates/settings/display.tpl index 70307c440..6e2bc9089 100644 --- a/view/theme/frio/templates/settings/display.tpl +++ b/view/theme/frio/templates/settings/display.tpl @@ -28,7 +28,7 @@ {{/if}}
- +
@@ -47,9 +47,9 @@
- {{if $theme_config}} - {{$theme_config}} - {{/if}} + {{if $theme_config}} + {{$theme_config nofilter}} + {{/if}}
@@ -78,7 +78,7 @@ {{include file="field_checkbox.tpl" field=$smart_threading}}
- +
@@ -89,7 +89,7 @@ @@ -99,7 +99,7 @@ {{include file="field_select.tpl" field=$first_day_of_week}}
- +
diff --git a/view/theme/frio/templates/settings/features.tpl b/view/theme/frio/templates/settings/features.tpl index c811b8cf3..e5f8ce065 100644 --- a/view/theme/frio/templates/settings/features.tpl +++ b/view/theme/frio/templates/settings/features.tpl @@ -23,7 +23,7 @@ {{/foreach}}
- +
diff --git a/view/theme/frio/templates/settings/oauth.tpl b/view/theme/frio/templates/settings/oauth.tpl index ffd40f2ab..c6103cbc8 100644 --- a/view/theme/frio/templates/settings/oauth.tpl +++ b/view/theme/frio/templates/settings/oauth.tpl @@ -34,8 +34,8 @@ {{/if}} {{/if}} {{if $app.my}} -   - +   + {{/if}}
{{/foreach}} diff --git a/view/theme/frio/templates/settings/oauth_edit.tpl b/view/theme/frio/templates/settings/oauth_edit.tpl index 160004c6e..419e1b203 100644 --- a/view/theme/frio/templates/settings/oauth_edit.tpl +++ b/view/theme/frio/templates/settings/oauth_edit.tpl @@ -11,7 +11,7 @@ {{include file="field_input.tpl" field=$icon}}
- +
diff --git a/view/theme/frio/templates/settings/settings.tpl b/view/theme/frio/templates/settings/settings.tpl index 40b0497a0..81db6a0af 100644 --- a/view/theme/frio/templates/settings/settings.tpl +++ b/view/theme/frio/templates/settings/settings.tpl @@ -2,7 +2,7 @@ {{* include the title template for the settings title *}} {{include file="section_title.tpl" title=$ptitle }} - {{$nickname_block}} + {{$nickname_block nofilter}}
@@ -29,7 +29,7 @@ {{/if}}
- +
@@ -57,7 +57,7 @@ {{include file="field_checkbox.tpl" field=$allowloc}}
- +
@@ -80,28 +80,26 @@ {{include file="field_input.tpl" field=$maxreq}} - {{$profile_in_dir}} + {{$profile_in_dir nofilter}} - {{$profile_in_net_dir}} + {{$profile_in_net_dir nofilter}} - {{$hide_friends}} + {{$hide_friends nofilter}} - {{$hide_wall}} + {{$hide_wall nofilter}} - {{$blockwall}} + {{$blockwall nofilter}} - {{$blocktags}} + {{$blocktags nofilter}} - {{$suggestme}} - - {{$unkmail}} + {{$suggestme nofilter}} + {{$unkmail nofilter}} {{include file="field_input.tpl" field=$cntunkmail}} {{include file="field_input.tpl" field=$expire.days}} -
{{$expire.label}} @@ -138,7 +136,7 @@
@@ -147,11 +145,10 @@
- {{$group_select}} - + {{$group_select nofilter}}
- +
@@ -241,7 +238,7 @@
- +
@@ -262,10 +259,10 @@
{{$h_descadvn}}
- {{$pagetype}} + {{$pagetype nofilter}}
- +
@@ -288,7 +285,7 @@
- +
diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 9b8322a85..50a8934d1 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -25,7 +25,7 @@ {{if $background_image}}{{include file="field_fileinput.tpl" field=$background_image}}{{/if}}