DATADIRECTORY chemins corrects

This commit is contained in:
fredtempez 2021-04-27 08:53:16 +02:00
parent d79861cbdf
commit 59f0fe537f
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ class gallery extends common {
const REALNAME = 'Galerie';
const DELETE = true;
const UPDATE = '0.0';
const DATADIRECTORY = self::DATA_DIR . 'gallery/';
const DATADIRECTORY = self::DATA_DIR . 'gallery/pages/';
const SORT_ASC = 'SORT_ASC';
const SORT_DSC = 'SORT_DSC';

View File

@ -19,7 +19,7 @@ class news extends common {
const REALNAME = 'Actualités';
const DELETE = true;
const UPDATE = '0.0';
const DATADIRECTORY = self::DATA_DIR . 'news/';
const DATADIRECTORY = self::DATA_DIR . 'news/pages/';
public static $actions = [
'add' => self::GROUP_MODERATOR,

View File

@ -23,7 +23,7 @@ class search extends common {
const REALNAME = 'Recherche';
const DELETE = true;
const UPDATE = '0.0';
const DATADIRECTORY = self::DATA_DIR . 'search/';
const DATADIRECTORY = self::DATA_DIR . 'search/pages/';
public static $actions = [
'index' => self::GROUP_VISITOR,