diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 15:07:14 -0700 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 15:07:14 -0700 |
commit | f112d8cd69ed7080b5bba6ad259cb77802e49f56 (patch) | |
tree | 90308bee0b447f2daf1b6a545b023178f6e0544f /core | |
parent | 9185cd5daef7babd748dec9f15b9b3f3ce90207c (diff) | |
parent | 2d61f0345297a92d23751d3228b74c6dca94d1e5 (diff) | |
download | nextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.tar.gz nextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.zip |
Merge pull request #75 from fmms/master
More Checkstyle cleanup
Diffstat (limited to 'core')
-rw-r--r-- | core/ajax/requesttoken.php | 4 | ||||
-rw-r--r-- | core/lostpassword/index.php | 2 | ||||
-rw-r--r-- | core/lostpassword/resetpassword.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/core/ajax/requesttoken.php b/core/ajax/requesttoken.php index 96d5402e621..705330b2c3e 100644 --- a/core/ajax/requesttoken.php +++ b/core/ajax/requesttoken.php @@ -29,8 +29,8 @@ require_once '../../lib/base.php'; // don't load apps or filesystem for this task -$RUNTIME_NOAPPS = TRUE; -$RUNTIME_NOSETUPFS = TRUE; +$RUNTIME_NOAPPS = true; +$RUNTIME_NOSETUPFS = true; // Sanity checks // using OCP\JSON::callCheck() below protects the token refreshing itself. diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 906208dcbc4..1da5bce8ea8 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -$RUNTIME_NOAPPS = TRUE; //no apps +$RUNTIME_NOAPPS = true; //no apps require_once '../../lib/base.php'; diff --git a/core/lostpassword/resetpassword.php b/core/lostpassword/resetpassword.php index 896c8da76e0..7cd383921d7 100644 --- a/core/lostpassword/resetpassword.php +++ b/core/lostpassword/resetpassword.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -$RUNTIME_NOAPPS = TRUE; //no apps +$RUNTIME_NOAPPS = true; //no apps require_once '../../lib/base.php'; // Someone wants to reset their password: |