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

    r548 r996  
    6565} 
    6666 
    67 $GLOBALS['_RESULT'] = array( 
     67$aResult = array( 
    6868"bStateError"     => $bStateError, 
    6969"sMsgTitle"   => $sMsgTitle, 
     
    7373); 
    7474 
     75if (!headers_sent()) { 
     76        header('Content-type: application/json'); 
     77} 
     78echo json_encode($aResult); 
    7579?>