|
@@ -19,6 +19,7 @@ class Code
|
|
|
$filename = Dever::input('filename');
|
|
|
$param['width'] = Dever::input('width', 200);
|
|
|
$param['is_hyaline'] = true;
|
|
|
+ $param['env_version'] = 'release';
|
|
|
$update = Dever::input('update', 2);
|
|
|
|
|
|
if ($send) {
|
|
@@ -34,6 +35,9 @@ class Code
|
|
|
if (isset($send['width'])) {
|
|
|
$param['width'] = $send['width'];
|
|
|
}
|
|
|
+ if (isset($send['env'])) {
|
|
|
+ $param['env_version'] = $send['env'];
|
|
|
+ }
|
|
|
if (isset($send['filename'])) {
|
|
|
$filename = $send['filename'];
|
|
|
}
|