From baf058316cbf6a8d57d2cf29239f5ad885306f7c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 12 May 2013 10:56:32 +0200 Subject: [PATCH] disable mbstring.func_overload in setup --- lib/setup.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/setup.php b/lib/setup.php index d1197b3ebf3..f1ac6b8b2b8 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -811,6 +811,7 @@ class OC_Setup { $content.= "php_value upload_max_filesize 512M\n";//upload limit $content.= "php_value post_max_size 512M\n"; $content.= "php_value memory_limit 512M\n"; + $content.= "php_value mbstring.func_overload 0\n"; $content.= "\n"; $content.= " SetEnv htaccessWorking true\n"; $content.= "\n";