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 /boot.php | |
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 'boot.php')
-rwxr-xr-x | boot.php | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -563,6 +563,10 @@ function absurl($path) { return $path; } +function is_ajax() { + return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'); +} + // Primarily involved with database upgrade, but also sets the // base url for use in cmdline programs which don't have |