Show
Ignore:
Timestamp:
08/21/10 20:31:41 (21 months ago)
Author:
ort
Message:

Избавляемся от использования JsHttpRequest? и отдаем ответы в формате JSON

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/ajax/blogs_self.php

    r413 r996  
    4545} 
    4646 
    47 $GLOBALS['_RESULT'] = array( 
     47$aResult = array( 
    4848"bStateError"     => $bStateError, 
    4949"sText"   => $sTextResult, 
     
    5252); 
    5353 
     54if (!headers_sent()) { 
     55        header('Content-type: application/json'); 
     56} 
     57echo json_encode($aResult); 
    5458?>