diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 20:25:25 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 20:25:25 -0400 |
commit | aed7fb5cf5b04b296689771e3337b19a4a281f55 (patch) | |
tree | 67277db536225b08215e15f3898cbc01522880e1 /core | |
parent | f9c24f3c2c46eccd18e70704c0e8767fa6023206 (diff) |
Assignee change from the board is now a popover
Diffstat (limited to 'core')
-rw-r--r-- | core/request.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/request.php b/core/request.php index f2fa4d9f..df8ea41a 100644 --- a/core/request.php +++ b/core/request.php @@ -48,4 +48,9 @@ class Request { return isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST'; } + + public function isAjax() + { + return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest'; + } } |