]> git.mxchange.org Git - friendica-addons.git/blobdiff - impressum/impressum.php
Merge pull request #291 from fabrixxm/master
[friendica-addons.git] / impressum / impressum.php
index 6714dfc1391113b46aeb7e26ca11e2a09fd5f1f6..235c4147785f5b5628e0c59634c040fcae049d9e 100755 (executable)
@@ -8,6 +8,7 @@
  */
 
 require_once('include/bbcode.php');
+require_once('mod/proxy.php');
 
 function impressum_install() {
     register_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
@@ -34,7 +35,7 @@ function obfuscate_email ($s) {
     return $s;
 }
 function impressum_footer($a, &$b) {
-    $text = bbcode(get_config('impressum','footer_text'), true);
+    $text = proxy_parse_html(bbcode(get_config('impressum','footer_text'), true));
     if (! $text == '') {
         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />';
         $b .= '<div class="clear"></div>';
@@ -45,8 +46,8 @@ function impressum_show($a,&$b) {
     $b .= '<h3>'.t('Impressum').'</h3>';
     $owner = get_config('impressum', 'owner');
     $owner_profile = get_config('impressum','ownerprofile');
-    $postal = bbcode(get_config('impressum', 'postal'), true);
-    $notes = bbcode(get_config('impressum', 'notes'), true);
+    $postal = proxy_parse_html(bbcode(get_config('impressum', 'postal'), true));
+    $notes = proxy_parse_html(bbcode(get_config('impressum', 'notes'), true));
     $email = obfuscate_email( get_config('impressum','email') );
     if (strlen($owner)) {
         if (strlen($owner_profile)) {
@@ -88,7 +89,7 @@ function impressum_plugin_admin_post (&$a) {
 function impressum_plugin_admin (&$a, &$o) {
     $t = get_markup_template( "admin.tpl", "addon/impressum/" );
     $o = replace_macros($t, array(
-        '$submit' => t('Submit'),
+        '$submit' => t('Save Settings'),
         '$owner' => array('owner', t('Site Owner'), get_config('impressum','owner'), t('The page operators name.')),
         '$ownerprofile' => array('ownerprofile', t('Site Owners Profile'), get_config('impressum','ownerprofile'), t('Profile address of the operator.')),
         '$postal' => array('postal', t('Postal Address'), get_config('impressum','postal'), t('How to contact the operator via snail mail. You can use BBCode here.')),