diff options
author | redmatrix <git@macgirvin.com> | 2016-03-20 19:55:53 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-20 19:55:53 -0700 |
commit | fea532af4da522001c71eb79df5fc49c83833da9 (patch) | |
tree | 71f10d16c1f881200fa17ce206bf812977203728 /mod | |
parent | 23151100dee1051d77d893a616cbc166eb5dcca1 (diff) | |
download | volse-hubzilla-fea532af4da522001c71eb79df5fc49c83833da9.tar.gz volse-hubzilla-fea532af4da522001c71eb79df5fc49c83833da9.tar.bz2 volse-hubzilla-fea532af4da522001c71eb79df5fc49c83833da9.zip |
rework salmon - important, update addons also if you have enabled gnusoc addon
Diffstat (limited to 'mod')
-rw-r--r-- | mod/oep.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/oep.php b/mod/oep.php index 42535c069..36741a752 100644 --- a/mod/oep.php +++ b/mod/oep.php @@ -106,7 +106,7 @@ function oep_display_reply($args) { $w = (($maxwidth) ? $maxwidth : 640); $h = (($maxheight) ? $maxheight : $w * 2 / 3); - $ret['html'] = '<div style="width: ' . $w . '; height: ' . $h . ';" >' . $o . '</div>'; + $ret['html'] = '<div style="width: ' . $w . '; height: ' . $h . '; font-family: sans-serif,arial,freesans;" >' . $o . '</div>'; $ret['width'] = $w; $ret['height'] = $h; @@ -165,7 +165,7 @@ function oep_mid_reply($args) { $w = (($maxwidth) ? $maxwidth : 640); $h = (($maxheight) ? $maxheight : $w * 2 / 3); - $ret['html'] = '<div style="width: ' . $w . '; height: ' . $h . ';" >' . $o . '</div>'; + $ret['html'] = '<div style="width: ' . $w . '; height: ' . $h . '; font-family: sans-serif,arial,freesans;" >' . $o . '</div>'; $ret['width'] = $w; $ret['height'] = $h; |