Chakratos / mhf-save-manager

A Webapplication to manage Character saves used by the MHF Server emulator Erupe
51 stars 10 forks source link

Invalid path in app/Service/EditorGenerateService.php #34

Open chloge opened 2 months ago

chloge commented 2 months ago

Hi, Building with docker-compose gave me warnings when attempting to access the Roadshop Editor about being unable to find files in /var/www/html/app/Service/../views/, and made the page unusable.

I was able to quickly fix this by correcting lines 44 and 46 respectively in EditorGenerateService.php to include the correct capitalized path as follows:

include __DIR__ . '/../Views/head.php'; include __DIR__ . '/../Views/topnav.php';

Best,