Standards and variable renaming

This commit is contained in:
Michael 2018-06-19 17:11:59 +00:00
parent a5ca724fd3
commit e4adaa9900
3 changed files with 22 additions and 35 deletions

View file

@ -27,10 +27,10 @@ function viewsrc_content(App $a)
if (DBM::is_result($item)) {
if (is_ajax()) {
echo str_replace("\n",'<br />',$item['body']);
echo str_replace("\n", '<br />', $item['body']);
killme();
} else {
$o .= str_replace("\n",'<br />',$item['body']);
$o .= str_replace("\n", '<br />', $item['body']);
}
}
return $o;