diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 11:42:04 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 11:42:04 +0200 |
commit | 767245e9ff05a1d54787711f68f0ce5ff3d1e26f (patch) | |
tree | da90cb54bb608a2f9ae2af3db4a08a1efd397645 /mod | |
parent | 0a2675d8b698302e50cb64ce5793ab9d22dee329 (diff) | |
download | volse-hubzilla-767245e9ff05a1d54787711f68f0ce5ff3d1e26f.tar.gz volse-hubzilla-767245e9ff05a1d54787711f68f0ce5ff3d1e26f.tar.bz2 volse-hubzilla-767245e9ff05a1d54787711f68f0ce5ff3d1e26f.zip |
viewsrc: return only body if page is requested via ajax
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/viewsrc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 94847ec7b..3fa4eaed5 100755 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -25,7 +25,12 @@ function viewsrc_content(&$a) { ); if(count($r)) - $o .= str_replace("\n",'<br />',$r[0]['body']); + if(is_ajax()) { + echo str_replace("\n",'<br />',$r[0]['body']); + killme(); + } else { + $o .= str_replace("\n",'<br />',$r[0]['body']); + } return $o; } |