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

    r428 r996  
    3737} 
    3838 
    39 $GLOBALS['_RESULT'] = array( 
     39$aResult = array( 
    4040        "bStateError"   => $bStateError, 
    4141        "sMsgTitle"     => $sMsgTitle, 
     
    4444); 
    4545 
     46if (!headers_sent()) { 
     47        header('Content-type: application/json'); 
     48} 
     49echo json_encode($aResult); 
    4650?>