Overview
Comment:Fix directory creation for standalone version
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable | 0.7.5
Files: files | file ages | folders
SHA1: a104f9ddaf4fb8353b104c6b284db1e7d6b5b845
User & Date: bohwaz on 2016-11-08 03:22:08
Other Links: manifest | tags
Context
2016-11-15
23:21
Ajout chemins à vérifier pour droit à l'écriture check-in: 3a40e8208d user: bohwaz tags: trunk
2016-11-08
03:22
Fix directory creation for standalone version check-in: a104f9ddaf user: bohwaz tags: trunk, stable, 0.7.5
03:10
Fonction non utilisée check-in: 6ae26257d1 user: bohwaz tags: trunk
Changes

Modified src/include/lib/Garradin/Squelette.php from [80a2c25938] to [cd345a39e9].

950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
        return false;
    }

    static public function listSources()
    {
        if (!file_exists(DATA_ROOT . '/www/squelettes'))
        {
            mkdir(DATA_ROOT . '/www/squelettes');
        }

        $sources = [];

        $dir = dir(ROOT . '/www/squelettes-dist');

        while ($file = $dir->read())







|







950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
        return false;
    }

    static public function listSources()
    {
        if (!file_exists(DATA_ROOT . '/www/squelettes'))
        {
            mkdir(DATA_ROOT . '/www/squelettes', 0775, true);
        }

        $sources = [];

        $dir = dir(ROOT . '/www/squelettes-dist');

        while ($file = $dir->read())