Typo + use regular assignment

This commit is contained in:
Lukas Reschke 2014-02-28 13:32:09 +01:00
parent 357fdb1a4d
commit d1c04e1136
1 changed files with 2 additions and 2 deletions

View File

@ -123,10 +123,10 @@ class OC_Setup {
* Append the correct ErrorDocument path for Apache hosts
*/
public static function updateHtaccess() {
$content.= "\n";
$content = "\n";
$content.= "ErrorDocument 403 ".OC::$WEBROOT."/core/templates/403.php\n";//custom 403 error page
$content.= "ErrorDocument 404 ".OC::$WEBROOT."/core/templates/404.php";//custom 404 error page
@file_put_contents(OC::$SERVERROOT.'/.htaccess', $content, FILE_APPEND); //supress errors in case we don't have permissions for it
@file_put_contents(OC::$SERVERROOT.'/.htaccess', $content, FILE_APPEND); //suppress errors in case we don't have permissions for it
}
public static function protectDataDirectory() {