diff --git a/common.php b/common.php index 13aa821..2223729 100644 --- a/common.php +++ b/common.php @@ -1430,6 +1430,23 @@ function EnvOpt($needUpdate = 0) if (isShowedEnv($k) || $k=='disktag_del' || $k=='disktag_add' || $k=='disktag_rename' || $k=='disktag_copy' || $k=='client_secret') { $tmp[$k] = $v; } + if ($k=='disktag_reset') { + global $slash; + $disktype = getConfig('Driver', $_GET['disktag']); + if (!$disktype) return false; + if (!class_exists($disktype)) require 'disk' . $slash . $disktype . '.php'; + $drive = new $disktype($_GET['disktag']); + return message(' + ' . getconstStr('JumptoOffice') . ' + + ', getconstStr('Wait') . ' 1s', 201); + } if ($k=='disktag_newname') { $v = preg_replace('/[^0-9a-zA-Z|_]/i', '', $v); $f = substr($v, 0, 1); @@ -1690,6 +1707,13 @@ output: +