aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorjeroenpraat <jeroenpraat@xs4all.nl>2015-11-12 22:10:20 +0100
committerjeroenpraat <jeroenpraat@xs4all.nl>2015-11-12 22:10:20 +0100
commit5afe8e5aa116fb288b2ef87c7af3c7e74565d50b (patch)
treecf8ad08cbcb76e60288e9e04f1b27b3f467beebe /mod
parent6e04dd96a1ff001f67db59e796b36cba30e4fdb4 (diff)
downloadvolse-hubzilla-5afe8e5aa116fb288b2ef87c7af3c7e74565d50b.tar.gz
volse-hubzilla-5afe8e5aa116fb288b2ef87c7af3c7e74565d50b.tar.bz2
volse-hubzilla-5afe8e5aa116fb288b2ef87c7af3c7e74565d50b.zip
Small update to Bluegrid and generic-content-wrapper-styled to dreport
Diffstat (limited to 'mod')
-rw-r--r--mod/dreport.php5
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
+}