Copyright and small fix

This commit is contained in:
Bart Visscher 2013-10-02 18:23:47 +02:00
parent 071b8033cb
commit 5db98aadd3
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,10 @@
<?php
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Core\Setup;
@ -43,7 +49,7 @@ class Controller {
include $autosetup_file;
$post['install'] = 'true';
$post = array_merge ($post, $AUTOCONFIG);
unlink($autosetup_file);
@unlink($autosetup_file);
}
return $post;
}