[Pkg-owncloud-commits] [owncloud] 04/239: Make working en_US.UTF-8 locale a hard requirement
David Prévot
taffit at moszumanska.debian.org
Fri Nov 29 01:32:11 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit a6d8854d2af234d0613467f12b45f229e0431b35
Author: Bart Visscher <bartv at thisnet.nl>
Date: Fri Nov 8 14:30:08 2013 +0100
Make working en_US.UTF-8 locale a hard requirement
---
lib/base.php | 8 +-------
lib/private/util.php | 7 +++++++
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/lib/base.php b/lib/base.php
index 4f8d97a..cf9230c 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -241,7 +241,7 @@ class OC {
$minimizerCSS->clearCache();
$minimizerJS = new OC_Minimizer_JS();
$minimizerJS->clearCache();
- OC_Util::addscript('update');
+ OC_Util::addScript('update');
$tmpl = new OC_Template('', 'update.admin', 'guest');
$tmpl->assign('version', OC_Util::getVersionString());
$tmpl->printPage();
@@ -564,12 +564,6 @@ class OC {
}
}
- // write error into log if locale can't be set
- if (OC_Util::isSetLocaleWorking() == false) {
- OC_Log::write('core',
- 'setting locale to en_US.UTF-8/en_US.UTF8 failed. Support is probably not installed on your system',
- OC_Log::ERROR);
- }
if (OC_Config::getValue('installed', false) && !self::checkUpgrade(false)) {
if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') {
OC_Util::addScript('backgroundjobs');
diff --git a/lib/private/util.php b/lib/private/util.php
index 176eb4b..f285f83 100755
--- a/lib/private/util.php
+++ b/lib/private/util.php
@@ -353,6 +353,13 @@ class OC_Util {
$errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY));
}
+ if(!OC_Util::isSetLocaleWorking()) {
+ $errors[] = array(
+ 'error' => 'Setting locale to en_US.UTF-8/en_US.UTF8 failed',
+ 'hint' => 'Please install the locale on your system and restart your webserver.'
+ );
+ }
+
$moduleHint = "Please ask your server administrator to install the module.";
// check if all required php modules are present
if(!class_exists('ZipArchive')) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list