json.php
1 <? 2 3 function json_for_post($board, $post) { 4 global $in_imgboard; 5 $in_imgboard = true; 6 include_once "/www/global/yotsuba/json.php"; 7 8 $extra = array(); 9 10 $post['board'] = $board; 11 return json_encode(generate_post_json( $post, $post['resto'] ? $post['resto'] : $post['no'], $extra, true )); 12 } 13 14 ?>