修复删除文件$info_list未定义问题

pull/25/head
zsx 2015-08-25 18:18:28 +08:00
parent 2b2ea121ce
commit f08bb89474
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class explorer extends Controller{
}
$state = $error==0?true:false;
$info = $success.' success,'.$error.' error';
if (count($info_list) == 1 && $error==0) {
if ($error==0) {
$info = $this->L['remove_success'];
}
show_json($info,$state);