mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a892bd8ebf
minor release, mainly rename
7 lines
224 B
PHP
7 lines
224 B
PHP
<?php
|
|
// get PIWIK_USER_PATH from environment variable,
|
|
// so this bootstrap.php can be read-only but still configure PIWIK_USER_PATH at runtime
|
|
if ($path = getenv('PIWIK_USER_PATH')) {
|
|
define('PIWIK_USER_PATH', $path);
|
|
}
|