Common subdirectories: views_datasource_edited/theme and views_datasource/theme
diff views_datasource_edited/views_json.module views_datasource/views_json.module
11,14d10
< function views_json_init(){
< 	if (isset($_GET['sort_order']))
< 		$_GET['sort_order'] = strtoupper($_GET['sort_order']);
< }
30c26
< function _views_json_render_multiple_field($field, $values) {
---
> function _views_json_render_multiple_field($field, $values) {  
116d111
< //echo " render fields" ;
135,136d129
< //		var_dump($row);
< //	echo "Field: ".$field_output;
146,156c139,140
<           if (preg_match('/(src)="([^"]*)"/i', $img_match[0], $src_match))
<             $img_src = $src_match[2];
<           if (preg_match('/(alt)="([^"]*)"/i', $img_match[0], $alt_match))
<             $img_alt = $alt_match[2];
<           if (preg_match('/(title)="([^"]*)"/i', $img_match[0], $title_match))
<             $img_title = $title_match[2];
<           $field_output[$i] = array(
<             'alt' => $img_alt,
<             'title' => $img_title,
<             'src' => $img_src,
<           );
---
>     	    if (preg_match('/(src)="([^"]*)"/i', $img_match[0], $src_match))
>     	    $field_output[$i] = ($src_match[2]);
163,172c147
<             $img_src = $src_match[2];
<           if (preg_match('/(alt)="([^"]*)"/i', $img_match[0], $alt_match))
<             $img_alt = $alt_match[2];
<           if (preg_match('/(title)="([^"]*)"/i', $img_match[0], $title_match))
<             $img_title = $title_match[2];
<           $field_output = array(
<             'alt' => $img_alt,
<             'title' => $img_title,
<             'src' => $img_src,
<           );
---
>     	    $field_output = ($src_match[2]);
181c156
<       $object->class = drupal_clean_css_identifier(strtolower($id));//views_css_safe($id);
---
>       $object->class = views_css_safe($id);
