diff options
author | umherirrender <umherirrender_de.wp@web.de> | 2014-07-21 14:47:42 +0200 |
---|---|---|
committer | umherirrender <umherirrender_de.wp@web.de> | 2014-07-24 11:53:04 +0200 |
commit | 4ee680a8b36a5ea9f97dbb349b45cbcbca492384 (patch) | |
tree | 173bc6dff49ae7a3e922d069e66204e12b458244 /includes/AjaxResponse.php | |
parent | d1d6cb7bc3a134cfd153ed7eb9fcdafa5c1fd193 (diff) | |
download | mediawikicore-4ee680a8b36a5ea9f97dbb349b45cbcbca492384.tar.gz mediawikicore-4ee680a8b36a5ea9f97dbb349b45cbcbca492384.zip |
Fixed spacing
- Removed spaces after not operator (!)
- Removed spaces inside array index
- use tab as indent instead of spaces
- Add newline at end of file
- Removed spaces after casts
Change-Id: I9ba17c4385fcb43d38998d45f89cf42952bc791b
Diffstat (limited to 'includes/AjaxResponse.php')
-rw-r--r-- | includes/AjaxResponse.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/AjaxResponse.php b/includes/AjaxResponse.php index a3808a549672..41cbd24ca79e 100644 --- a/includes/AjaxResponse.php +++ b/includes/AjaxResponse.php @@ -132,7 +132,7 @@ class AjaxResponse { * @param string $text */ function addText( $text ) { - if ( ! $this->mDisabled && $text ) { + if ( !$this->mDisabled && $text ) { $this->mText .= $text; } } @@ -141,7 +141,7 @@ class AjaxResponse { * Output text */ function printText() { - if ( ! $this->mDisabled ) { + if ( !$this->mDisabled ) { print $this->mText; } } |