]> git.mxchange.org Git - friendica.git/commitdiff
Add page-wrapper for probe + webfinder
authorJonny Tischbein <jonny_tischbein@systemli.org>
Mon, 17 Dec 2018 22:15:14 +0000 (23:15 +0100)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Mon, 17 Dec 2018 22:15:14 +0000 (23:15 +0100)
mod/probe.php
mod/webfinger.php

index b448ffd2b2e5938b139757226c4211a1afa0bb0f..7c41df8ac5de26f4a476020b12f5482f85e658f7 100644 (file)
@@ -15,7 +15,8 @@ function probe_content(App $a)
                killme();
        }
 
-       $o  = '<h3>Probe Diagnostic</h3>';
+       $o = '<div class="generic-page-wrapper">';
+       $o .= '<h3>Probe Diagnostic</h3>';
 
        $o .= '<form action="probe" method="get">';
        $o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . defaults($_GET, 'addr', '') . '" />';
@@ -30,6 +31,7 @@ function probe_content(App $a)
                $o .= str_replace("\n", '<br />', print_r($res, true));
                $o .= '</pre>';
        }
+       $o .= '</div>';
 
        return $o;
 }
index 01743f05b0660e8577de7495a999d31419ffeb05..a48d2dba6bac2634c0032a74ba238f5dfac8503b 100644 (file)
@@ -20,7 +20,8 @@ function webfinger_content(App $a)
                killme();
        }
 
-       $o  = '<h3>Webfinger Diagnostic</h3>';
+       $o = '<div class="generic-page-wrapper">';
+       $o .= '<h3>Webfinger Diagnostic</h3>';
 
        $o .= '<form action="webfinger" method="get">';
        $o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . defaults($_GET, 'addr', '') .'" />';
@@ -35,5 +36,7 @@ function webfinger_content(App $a)
                $o .= str_replace("\n", '<br />', print_r($res, true));
                $o .= '</pre>';
        }
+       $o .= '</div>';
+
        return $o;
 }