diff options
author | Volkan Gezer <wakeup@users.noreply.github.com> | 2015-01-11 15:29:07 +0100 |
---|---|---|
committer | Volkan Gezer <wakeup@users.noreply.github.com> | 2015-01-11 15:29:07 +0100 |
commit | 8558ff9c7f79e6a9202e4b36eeec724ce8a38288 (patch) | |
tree | 5de0fda076ef6c78381f8e2955c01746585d0b05 | |
parent | 8cd0962c6a2608436e734f6aafef592742ccb30b (diff) | |
parent | a1d86aab20ead96487a2ab991cf9289687f5ad04 (diff) | |
download | nextcloud-server-8558ff9c7f79e6a9202e4b36eeec724ce8a38288.tar.gz nextcloud-server-8558ff9c7f79e6a9202e4b36eeec724ce8a38288.zip |
Merge pull request #13250 from owncloud/bittypo
32-bit typo fix
-rw-r--r-- | core/setup/controller.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php index ab4c351b1a0..854c30ac769 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -173,17 +173,17 @@ class Controller { if($this->iniWrapper->getString('open_basedir') !== '' && PHP_INT_SIZE === 4) { $errors[] = array( 'error' => $this->l10n->t( - 'It seems that this %s instance is running on a 32bit PHP environment and the open_basedir has been configured in php.ini. ' . + 'It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. ' . 'This will lead to problems with files over 4GB and is highly discouraged.', $this->defaults->getName() ), - 'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64bit PHP.') + 'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.') ); } if(!function_exists('curl_init') && PHP_INT_SIZE === 4) { $errors[] = array( 'error' => $this->l10n->t( - 'It seems that this %s instance is running on a 32bit PHP environment and cURL is not installed. ' . + 'It seems that this %s instance is running on a 32-bit PHP environment and cURL is not installed. ' . 'This will lead to problems with files over 4GB and is highly discouraged.', $this->defaults->getName() ), |