Copyright and small fix
This commit is contained in:
parent
071b8033cb
commit
5db98aadd3
|
@ -1,4 +1,10 @@
|
||||||
<?php
|
<?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;
|
namespace OC\Core\Setup;
|
||||||
|
|
||||||
|
@ -43,7 +49,7 @@ class Controller {
|
||||||
include $autosetup_file;
|
include $autosetup_file;
|
||||||
$post['install'] = 'true';
|
$post['install'] = 'true';
|
||||||
$post = array_merge ($post, $AUTOCONFIG);
|
$post = array_merge ($post, $AUTOCONFIG);
|
||||||
unlink($autosetup_file);
|
@unlink($autosetup_file);
|
||||||
}
|
}
|
||||||
return $post;
|
return $post;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue