diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-13 16:45:31 +0100 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-13 16:45:31 +0100 |
commit | 0178840c19978cf4b0378609df0bcc004c6d36ae (patch) | |
tree | c8a8bcb86661f6278e9e08439c9621638d387d1e /mod/dreport.php | |
parent | d04c73ae0000bcd7cf854a936f25583355e78def (diff) | |
parent | 5d0646c9e1f207fa05fd923bcccd9f5844de2664 (diff) | |
download | volse-hubzilla-0178840c19978cf4b0378609df0bcc004c6d36ae.tar.gz volse-hubzilla-0178840c19978cf4b0378609df0bcc004c6d36ae.tar.bz2 volse-hubzilla-0178840c19978cf4b0378609df0bcc004c6d36ae.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'mod/dreport.php')
-rw-r--r-- | mod/dreport.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/dreport.php b/mod/dreport.php index c320bf0e6..1ad1eca7c 100644 --- a/mod/dreport.php +++ b/mod/dreport.php @@ -56,7 +56,7 @@ function dreport_content(&$a) { return; } - + $o .= '<div class="generic-content-wrapper-styled">'; $o .= '<h2>' . sprintf( t('Delivery report for %1$s'),substr($mid,0,32)) . '...' . '</h2>'; $o .= '<table>'; @@ -121,6 +121,7 @@ function dreport_content(&$a) { $o .= '<tr><td width="40%">' . $rr['name'] . '</td><td width="20%">' . escape_tags($rr['dreport_result']) . '</td><td width="20%">' . escape_tags($rr['dreport_time']) . '</td></tr>'; } $o .= '</table>'; + $o .= '</div>'; return $o; @@ -135,4 +136,4 @@ function dreport_gravity_sort($a,$b) { return strcmp($a['name'],$b['name']); } return (($a['gravity'] > $b['gravity']) ? 1 : (-1)); -}
\ No newline at end of file +} |