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

    r413 r996  
    4141 
    4242 
    43 $GLOBALS['_RESULT'] = array( 
     43$aResult = array( 
    4444"bStateError"     => $bStateError, 
    4545"sText"   => $sTextResult, 
     
    4848); 
    4949 
     50if (!headers_sent()) { 
     51        header('Content-type: application/json'); 
     52} 
     53echo json_encode($aResult); 
    5054?>