diff --git a/function/heroku.php b/function/heroku.php
index 7e1daa5..7957b8c 100644
--- a/function/heroku.php
+++ b/function/heroku.php
@@ -206,7 +206,7 @@ function_name:' . $_SERVER['function_name'] . '
}
envs = [' . $envs . '];
if (envs.indexOf(t.disktag_add.value)>-1) {
- alert(\'' . $envs . '\');
+ alert("Do not input ' . $envs . '");
return false;
}
var reg = /^[a-zA-Z]([-_a-zA-Z0-9]{1,20})$/;
diff --git a/function/normal.php b/function/normal.php
index 4e0f3de..7821695 100644
--- a/function/normal.php
+++ b/function/normal.php
@@ -218,7 +218,7 @@ Can not write config to file.
}
envs = [' . $envs . '];
if (envs.indexOf(t.disktag_add.value)>-1) {
- alert(\'' . $envs . '\');
+ alert("Do not input ' . $envs . '");
return false;
}
var reg = /^[a-zA-Z]([-_a-zA-Z0-9]{1,20})$/;
diff --git a/function/scf.php b/function/scf.php
index 8a09b47..9c4c996 100644
--- a/function/scf.php
+++ b/function/scf.php
@@ -230,7 +230,7 @@ namespace:' . $_SERVER['namespace'] . '
}
envs = [' . $envs . '];
if (envs.indexOf(t.disktag_add.value)>-1) {
- alert(\'' . $envs . '\');
+ alert("Do not input ' . $envs . '");
return false;
}
var reg = /^[a-zA-Z]([-_a-zA-Z0-9]{1,20})$/;