nervetattoo / aether

Modular PHP framework
aether-project.com
10 stars 1 forks source link

Error creating project path #9

Closed nervetattoo closed 12 years ago

nervetattoo commented 15 years ago

If the project is located in e.g /var/www/gaia-admin/www/ the path will be /var/gaia-admin.

Code in question: $projectPath = getcwd(); // Replace "www" with "config" and add trailling slash $projectPath = preg_replace("/www\/?/", "", $projectPath);

Possible fix: $projectPath = preg_replace("/www\/?$/", "", $projectPath);

simeng commented 12 years ago

Possible fix already applied