Commit 90484740 by Jansa Jose

Merge branch 'jansa'

parents 2bbb8f42 65e53915
......@@ -976,6 +976,7 @@ class Webservice extends CI_Controller {
$dd_pic = $value;
array_push($value_photos, $dd_pic);
}*/
//print_r($result['data']['photos']);
$res = array(
"status" => "success",
"data" => array(
......@@ -995,7 +996,7 @@ class Webservice extends CI_Controller {
"phone" => $new,
"specialization" => explode(',',$result['data']['sub_name']),
//"photos" =>$value_photos
"photos" =>explode(',',$result['data']['photos'])
"photos" =>$result['data']['photos'] != '' ? explode(',',$result['data']['photos']) : [];
)
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment