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 1c474e2 commit 9bc0a6bCopy full SHA for 9bc0a6b
controllers/home/InstallController.php
@@ -13,7 +13,8 @@ class InstallController extends PublicController
13
public function beforeAction($action)
14
{
15
if($this->isInstalled()){
16
- exit('PHPRAP已安装过,请不要重复安装,如果需要重新安装,请先删除runtime/install/install.lock');
+ $app_version = Yii::$app->params['app_version'];
17
+ exit('PHPRAP V' . $app_version . ' 已安装过,请不要重复安装,如果需要重新安装,请先删除runtime/install/install.lock');
18
}
19
return true;
20
0 commit comments