Skip to content

Commit e41194c

Browse files
authored
Merge pull request #1987 from svpernova09/fix-archive-path
Update path constants to public folder
2 parents 42824df + 3ab69ee commit e41194c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/News/Entry.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ class Entry
1515

1616
public const PHPWEB = __DIR__ . '/../../';
1717

18-
public const ARCHIVE_FILE_REL = 'archive/archive.xml';
18+
public const ARCHIVE_FILE_REL = 'public/archive/archive.xml';
1919

2020
public const ARCHIVE_FILE_ABS = self::PHPWEB . self::ARCHIVE_FILE_REL;
2121

22-
public const ARCHIVE_ENTRIES_REL = 'archive/entries/';
22+
public const ARCHIVE_ENTRIES_REL = 'public/archive/entries/';
2323

2424
public const ARCHIVE_ENTRIES_ABS = self::PHPWEB . self::ARCHIVE_ENTRIES_REL;
2525

26-
public const IMAGE_PATH_REL = 'images/news/';
26+
public const IMAGE_PATH_REL = 'public/images/news/';
2727

2828
public const IMAGE_PATH_ABS = self::PHPWEB . self::IMAGE_PATH_REL;
2929

0 commit comments

Comments
 (0)