类名规范

This commit is contained in:
thinkphp
2015-05-12 15:37:37 +08:00
parent 36a84e75de
commit b543317bbd
2 changed files with 3 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ class Controller {
$result['msg'] = $msg;
$result['time'] = NOW_TIME;
$result['data'] = $data;
app::returnData($result,$type);
App::returnData($result,$type);
}
/**
@@ -126,7 +126,7 @@ class Controller {
* @return void
*/
protected function ajaxReturn($data, $type='') {
app::returnData($data,$type);
App::returnData($data,$type);
}
/**