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/blogInfo.php

    r548 r996  
    4343 
    4444 
    45 $GLOBALS['_RESULT'] = array( 
     45$aResult = array( 
    4646"bStateError"     => $bStateError, 
    4747"sText"   => $sText, 
    4848); 
    4949 
     50if (!headers_sent()) { 
     51        header('Content-type: application/json'); 
     52} 
     53echo json_encode($aResult); 
    5054?>