This commit is contained in:
2019-10-11 16:33:41 -04:00
parent 1e016d1842
commit 6e19b14fdf
9 changed files with 141 additions and 72 deletions
+5 -3
View File
@@ -51,9 +51,11 @@ class JUB_Controller extends CI_Controller {
protected function jubabox_webapi($action, $in, &$out) {
$this->load->model('backend_model');
$in["action"] = $action;
$in["pid"] = 100;
return $this->backend_model->jubabox_api($in, $out);
$in["action"] = $action;
$in["pid"] = 100;
$ret = $this->backend_model->jubabox_api($in, $out);
//echo $ret;
return $ret;
}
function formatedMesage($msgType, $theMessage) {