view php/config.php @ 3139:bc0ef78bb07a

requestKey uses POST to avoid cache
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Tue, 16 Mar 2021 21:02:40 +0000
parents a543efc6ef1d
children
line wrap: on
line source
<?php
function getSaveLocation() {
    if (getenv("WAET_SAVES_LOCATION") !== false) {
        return getenv("WAET_SAVES_LOCATION");
    } else {
        return "../saves/";
    }
}
function getTestLocation() {
    if (getenv("WAET_TEST_LOCATION") !== false) {
        return getenv("WAET_TEST_LOCATION");
    } else {
        return "../tests/";
    }
}
?>