diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
commit | 370e83bb0dfd0c70de268c93bf07ad5ee0897192 (patch) | |
tree | 491674f4c242e4d6ba0d04eafa305174c35a3391 /includes/AjaxResponse.php | |
parent | f4debf0f12d0524d2b2427c55ea3f16b680fad97 (diff) |
Update auf 1.13.0
Diffstat (limited to 'includes/AjaxResponse.php')
-rw-r--r-- | includes/AjaxResponse.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/includes/AjaxResponse.php b/includes/AjaxResponse.php index 8fa08539..c79e928b 100644 --- a/includes/AjaxResponse.php +++ b/includes/AjaxResponse.php @@ -1,11 +1,16 @@ <?php +/** + * @file + * @ingroup Ajax + */ + if( !defined( 'MEDIAWIKI' ) ) { die( 1 ); } /** * @todo document - * @addtogroup Ajax + * @ingroup Ajax */ class AjaxResponse { @@ -99,7 +104,7 @@ class AjaxResponse { if ( $this->mCacheDuration ) { - # If squid caches are configured, tell them to cache the response, + # If squid caches are configured, tell them to cache the response, # and tell the client to always check with the squid. Otherwise, # tell the client to use a cached copy, without a way to purge it. @@ -220,4 +225,3 @@ class AjaxResponse { return true; } } - |