aboutsummaryrefslogtreecommitdiffstats
path: root/includes/AjaxResponse.php
diff options
context:
space:
mode:
authorumherirrender <umherirrender_de.wp@web.de>2014-07-21 14:47:42 +0200
committerumherirrender <umherirrender_de.wp@web.de>2014-07-24 11:53:04 +0200
commit4ee680a8b36a5ea9f97dbb349b45cbcbca492384 (patch)
tree173bc6dff49ae7a3e922d069e66204e12b458244 /includes/AjaxResponse.php
parentd1d6cb7bc3a134cfd153ed7eb9fcdafa5c1fd193 (diff)
downloadmediawikicore-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.php4
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;
}
}