We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aedb999 commit 72c8510Copy full SHA for 72c8510
docker/entrypoint.sh
@@ -95,7 +95,8 @@ if [ "$EVO_AUTO_INSTALL" = "true" ] && [ ! -f "/var/www/html/config.php" ]; then
95
if [ -n "$EVO_MAIN_PACKAGE_NAME" ]; then
96
echo "📦 Creating main package: $EVO_MAIN_PACKAGE_NAME"
97
php artisan package:create "$EVO_MAIN_PACKAGE_NAME"
98
- echo "<?php return \"EvolutionCMS\\\\$EVO_MAIN_PACKAGE_NAME\\\\Controllers\\\\\"; ?>" > custom/config/cms/settings/ControllerNamespace.php
+ # Write PHP namespace string with proper escaping and trailing backslash
99
+ echo "<?php return 'EvolutionCMS\\\\$EVO_MAIN_PACKAGE_NAME\\\\Controllers\\\\'; ?>" > custom/config/cms/settings/ControllerNamespace.php
100
fi
101
102
# Install TinyMCE5 if enabled
0 commit comments