Forráskód Böngészése

修复头像URL在命令行初始化安装时无法获取域名问题

gtlee 11 hónapja
szülő
commit
ccf6bd9a98
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      application/admin/command/Install.php

+ 1 - 1
application/admin/command/Install.php

@@ -244,7 +244,7 @@ class Install extends Command
             throw new Exception(__('The current permissions are insufficient to write the file %s', 'application/config.php'));
         }
 
-        $avatar = request()->domain() . '/assets/img/avatar.png';
+        $avatar = '/assets/img/avatar.png';
         // 变更默认管理员密码
         $adminPassword = $adminPassword ? $adminPassword : Random::alnum(8);
         $adminEmail = $adminEmail ? $adminEmail : "admin@admin.com";